pacman::p_load(tmap, sf, DT, stplanr,
performance, sp,
ggpubr, tidyverse, corrplot,
yardstick)Take-home Exercise 2: Applied Spatial Interaction Models: A case study of Singapore public bus commuter flows
1 Background
Urban commuters on the morning and traveling to work face complex mobility challenges, prompting questions about the impacts of public bus service removal along their routes. Traditional methods like commuter surveys are costly, time-consuming, and often result in outdated information. With the digitization of city-wide infrastructure and the widespread use of GPS on the vehicles and SMART cards in public transport, vast geospatial data sets are generated. However, the rapid growth of this data has overwhelmed planners, hindering their ability to transform it into meaningful insights and impacting the return on investment in data collection.
2 The Data
2.1 Open Government Data
For the purpose of this assignment, data from several open government sources will be used:
Passenger Volume by Origin Destination Bus Stops, Bus Stop Location, Train Station and Train Station Exit Point, just to name a few of them, from LTA DataMall.
Master Plan 2019 Subzone Boundary, HDB Property Information, School Directory and Information and other relevant data from Data.gov.sg.
hexagon, a hexagon layer of 375m (this distance is the perpendicular distance between the centre of the hexagon and its edges.) should be used to replace the relative coarse and irregular Master Plan 2019 Planning Sub-zone GIS data set of URA.
2.2 Specially collected data
Business, entertn, F&B, Leisure&Recreation are geospatial data sets of the locations of business establishments, entertainments, food and beverage outlets, leisure and recreation centres compiled for case study of Singapore public bus commuter flows. They are available on in the geospatial folder to Take-home Exercise 2 data folder.
HDB: This data set is the geocoded version of HDB Property Information data from data.gov. The data set is prepared using September 2021 data.
2 Getting Started
For the purpose of this study, 10 r packages will be used. They are:
tmap is a package for creating thematic maps. It provides a flexible and powerful framework for visualizing spatial data.
sf is an R package for simple features, which provides a standard way to encode spatial vector data.
DT is a package that extends the
data.tablepackage and provides functions to create interactive data tables in R Markdown documents and Shiny web applications.stplanr is a package for sustainable transport planning. It offers functions for transport planning and modeling, particularly with spatial data.
performance package is often associated with the
yardstickpackage and provides functions for model performance metrics, such as RMSE, MAE, etc.sp is a package for handling and analyzing spatial data. It is one of the foundational packages for spatial data manipulation and analysis in R.
ggpubr is a package for creating beautiful and customizable ggplot2-based plots for publication.
tidyverse is a collection of R packages, including
dplyr,ggplot2,tidyr, and others. It promotes a tidy data workflow and provides a consistent set of functions for data manipulation and visualization.corrplot is a package for visualizing correlation matrices using colored plots. It helps in understanding the relationships between variables in a dataset.
yardstick is a package for measuring model performance. It provides functions for computing various metrics, such as accuracy, precision, recall, and others.
The code chunk below installs and loads the various packages.
3 Data Preparation
3.1 Importing the OD data
Firstly, we will import the Passenger Volume by Origin Destination Bus Stops data set downloaded from LTA DataMall by using read_csv() of readr package.
Code
odbus <- read_csv("data/aspatial/origin_destination_bus_202308.csv",show_col_types = FALSE)Let use display the odbus tibble data table by using the code chunk below.
glimpse(odbus)Rows: 5,709,512
Columns: 7
$ YEAR_MONTH <chr> "2023-08", "2023-08", "2023-08", "2023-08", "2023-…
$ DAY_TYPE <chr> "WEEKDAY", "WEEKENDS/HOLIDAY", "WEEKENDS/HOLIDAY",…
$ TIME_PER_HOUR <dbl> 16, 16, 14, 14, 17, 17, 17, 17, 7, 17, 14, 10, 10,…
$ PT_TYPE <chr> "BUS", "BUS", "BUS", "BUS", "BUS", "BUS", "BUS", "…
$ ORIGIN_PT_CODE <chr> "04168", "04168", "80119", "80119", "44069", "4406…
$ DESTINATION_PT_CODE <chr> "10051", "10051", "90079", "90079", "17229", "1722…
$ TOTAL_TRIPS <dbl> 7, 2, 3, 10, 5, 4, 3, 22, 3, 3, 7, 1, 3, 1, 3, 1, …
A quick check of odbus tibble data frame shows that the values in OROGIN_PT_CODE and DESTINATON_PT_CODE are in numeric data type. Hence, the code chunk below is used to convert these data values into character data type.
odbus$ORIGIN_PT_CODE <- as.factor(odbus$ORIGIN_PT_CODE)
odbus$DESTINATION_PT_CODE <- as.factor(odbus$DESTINATION_PT_CODE) 3.2 Extracting the study data
For this take home exercise, we will extract commuting flows on weekday and between 6 and 9 o’clock.
odbus6_9 <- odbus %>%
filter(DAY_TYPE == "WEEKDAY") %>%
filter(TIME_PER_HOUR >= 6 &
TIME_PER_HOUR <= 9) %>%
group_by(ORIGIN_PT_CODE,
DESTINATION_PT_CODE) %>%
summarise(TRIPS = sum(TOTAL_TRIPS))Table below shows the content of odbus6_9
Code
datatable(odbus6_9)4 Working with Geospatial Data
For the purpose of this exercise, three geospatial data will be used. They are:
Bus Stop Location from LTA DataMall. It provides information about all the bus stops currently being serviced by buses, including the bus stop code (identifier) and location coordinates.
MPSZ-2019: This data provides the sub-zone boundary of URA Master Plan 2019.
hexagon, a hexagon layer of 375m (this distance is the perpendicular distance between the centre of the hexagon and its edges.) should be used to replace the relative coarse and irregular Master Plan 2019 Planning Sub-zone GIS data set of URA.
4.1 Importing geospatial data
busstop <- st_read(dsn = "data/geospatial",
layer = "BusStop") %>%
st_transform(crs = 3414)Reading layer `BusStop' from data source
`C:\cjh202311\isss624\Take-home_Ex\Take-home_Ex2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 5161 features and 3 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 3970.122 ymin: 26482.1 xmax: 48284.56 ymax: 52983.82
Projected CRS: SVY21
Let’s take a look at the location of bus stops in Singapore:
plot(busstop['BUS_STOP_N'])
mpsz <- st_read(dsn = "data/geospatial",
layer = "MPSZ-2019") %>%
st_transform(crs = 3414)Reading layer `MPSZ-2019' from data source
`C:\cjh202311\isss624\Take-home_Ex\Take-home_Ex2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 332 features and 6 fields
Geometry type: MULTIPOLYGON
Dimension: XY
Bounding box: xmin: 103.6057 ymin: 1.158699 xmax: 104.0885 ymax: 1.470775
Geodetic CRS: WGS 84
Let’s take a look at the map of subzone in Singapore.
Code
plot(mpsz['SUBZONE_C'])
4.2 Create Hexagon grid (honeycomb)
For this exercise purpose, we need to create an analytical hexagon data of 375m. (this distance is the perpendicular distance between the centre of the hexagon and its edges)
The following code creates a hexagon grid, associates bus stops with hexagons, and filters out hexagons without any bus stops. The resulting bs_num data frame contains information about hexagons with at least one bus stop.
area_honeycomb_grid = st_make_grid(busstop,cellsize = 750, what = "polygons", square = FALSE)
honeycomb_grid_sf = st_sf(area_honeycomb_grid) %>%
mutate(grid_id = 1:length(lengths(area_honeycomb_grid)))
honeycomb_grid_sf$num_bs = lengths(st_intersects(honeycomb_grid_sf, busstop))
bs_num = filter(honeycomb_grid_sf, num_bs > 0)Let’s take a look at the hexagon grid:
Code
tmap_mode("plot")
tmap_options(check.and.fix = TRUE)
tm_shape(mpsz) +
tm_borders(alpha=0.7,col = "white")+
tm_polygons("darkgrey") +
tm_shape(bs_num) +
tm_fill("num_bs",alpha=0.8,palette = "Greens")+
tm_polygons()
5 Geospatial data wrangling
5.1 Combining Busstop and Hexagon grid
After running this code, honeycomb_grid will be a data frame containing information about bus stops that fall within the hexagons, including the bus stop ID (BUS_STOP_N), the hexagon ID (grid_id), and the number of bus stops within that hexagon (num_bs).
honeycomb_grid <- st_intersection(busstop, bs_num) %>%
select(BUS_STOP_N, grid_id,num_bs) %>%
st_drop_geometry()5.2 Combine odbus6_9 with od_data
For further visual operation, we need to combine a table contains the number of trips between pairs of origin and destination hexagons.
od_data <- left_join(odbus6_9, honeycomb_grid,
by = c("ORIGIN_PT_CODE" = "BUS_STOP_N")) %>%
rename(ORIGIN_BS = ORIGIN_PT_CODE,
ORIGIN_SZ = grid_id,
DESTIN_BS = DESTINATION_PT_CODE)Before continue, check for duplicating records.
duplicate <- od_data %>%
group_by_all() %>%
filter(n()>1) %>%
ungroup()Another left join between odbus6_9 and honeycomb_grid to get the DESTIN_BS.
od_data <- left_join(od_data, honeycomb_grid,
by = c("DESTIN_BS" = "BUS_STOP_N")) %>%
rename(DESTIN_SZ = grid_id)Before continue, check for duplicating records.
duplicate <- od_data %>%
group_by_all() %>%
filter(n()>1) %>%
ungroup()Group by ‘ORIGIN_GRID_ID’ and ‘DESTIN_GRID_ID’ to create a new column ‘MORNING_PEAK’ representing the total number of trips between each pair of hexagons.
od_data <- od_data %>%
drop_na() %>%
group_by(ORIGIN_SZ, DESTIN_SZ) %>%
summarise(MORNING_PEAK = sum(TRIPS))6 Visualising Spatial Interaction
6.1 Removing intra-zonal flows
We will not plot the intra-zonal flows. The code chunk below will be used to remove intra-zonal flows.
od_data1 <- od_data[od_data$ORIGIN_SZ!=od_data$DESTIN_SZ,]6.2 Create flowline
flowLine <- od2line(flow = od_data1,
zones = bs_num,
zone_code = "grid_id")6.3 Visualisation and Analysis
Code
tmap_mode("plot")
tmap_options(check.and.fix = TRUE)
tm_shape(mpsz) +
tm_borders(alpha=0.7,col = "white")+
tm_polygons("darkgrey") +
tm_shape(bs_num) +
tm_fill("num_bs",alpha=0.8,palette = "Greens")+
tm_polygons() +
flowLine %>%
filter(MORNING_PEAK >= 5000) %>%
tm_shape() +
tm_lines(lwd = "MORNING_PEAK",
style = "quantile",
scale = c(0.3,3, 6, 9, 12, 18,21, 27),
n = 6,
alpha = 0.5,
col="yellow") +
tm_layout(main.title = 'OD Flow On Weekday Morning Peak hour' ,
main.title.position = "center",
main.title.size = 1,
main.title.fontface = 'bold') +
tm_compass(type="8star", size = 1) +
tm_scale_bar()
In this map, we filtered out trips with a count less than 5000 for enhanced analysis. Thicker flowlines indicate a higher volume of trips, while the length of the flowlines represents the distance between each hexagon. Notably, we observe long lines from the northern to the eastern regions, which, upon referencing the Singapore subway map, suggests a lack of subway connections along that route. Additionally, thicker lines predominantly appear in darker-colored hexagons, indicating a positive correlation between the number of bus stations and trip volume.
Code
tmap_mode("plot")
tmap_options(check.and.fix = TRUE)
tm_shape(mpsz) +
tm_borders(alpha=0.7,col = "white")+
tm_polygons("darkgrey") +
tm_shape(bs_num %>%
filter(num_bs <= 3)) +
tm_fill("num_bs",alpha=0.8,palette = "Greens")+
tm_polygons() +
tm_shape(flowLine %>%
filter(MORNING_PEAK >= 20000)) +
tm_lines(lwd = "MORNING_PEAK",
style = "quantile",
scale = c(0.3,3, 6, 9, 12, 18,21, 27),
n = 6,
alpha = 0.5,
col="yellow") +
tm_layout(main.title = 'OD Flow On Weekday Morning Peak hour' ,
main.title.position = "center",
main.title.size = 1,
main.title.fontface = 'bold') +
tm_compass(type="8star", size = 1) +
tm_scale_bar()
After filtering for bus stops with a count of 3 or fewer and trips exceeding 20000, we observe a significant reduction in the overlap between flow lines and hexagons. This confirms the earlier understanding of the relationship between bus stations and trip volume. However, notable overlaps persist in the northern part of Singapore. Given the geographical context, this is likely attributed to buses traveling between Malaysia and Singapore—routes with fewer stations but higher trip volumes.
7 Assemble propulsive and attractiveness variables
business <- st_read(dsn = "data/geospatial",
layer = "Business") %>%
st_transform(crs = 3414)Reading layer `Business' from data source
`C:\cjh202311\isss624\Take-home_Ex\Take-home_Ex2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 6550 features and 3 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 3669.148 ymin: 25408.41 xmax: 47034.83 ymax: 50148.54
Projected CRS: SVY21 / Singapore TM
bs_num$`BUSINESS_num`<- lengths(
st_intersects(
bs_num, business))summary(bs_num$BUSINESS_num) Min. 1st Qu. Median Mean 3rd Qu. Max.
0.000 0.000 1.000 7.273 7.000 97.000
Code
tmap_mode("plot")
tmap_options(check.and.fix = TRUE)
tm_shape(mpsz) +
tm_borders(alpha=0.7,col = "white")+
tm_polygons("darkgrey") +
tm_shape(bs_num) +
tm_polygons(alpha=0.5, col = "darkgreen")+
tm_shape(business) +
tm_dots(size = 0.05, col = "yellow") 
fb <- st_read(dsn = "data/geospatial", layer = "F&B") %>% st_transform(crs = 3414)Reading layer `F&B' from data source
`C:\cjh202311\isss624\Take-home_Ex\Take-home_Ex2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 1919 features and 3 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 6010.495 ymin: 25343.27 xmax: 45462.43 ymax: 48796.21
Projected CRS: SVY21 / Singapore TM
bs_num$`FB_num`<- lengths(
st_intersects(
bs_num, fb))summary(bs_num$FB_num) Min. 1st Qu. Median Mean 3rd Qu. Max.
0.000 0.000 0.000 2.204 1.000 133.000
Code
tmap_mode("plot")
tmap_options(check.and.fix = TRUE)
tm_shape(mpsz) +
tm_borders(alpha=0.7,col = "white")+
tm_polygons("darkgrey") + tm_shape(bs_num) +
tm_polygons(alpha=0.5, col = "darkgreen")+
tm_shape(fb) +
tm_dots(size = 0.05, col = "yellow") 
lr <- st_read(dsn = "data/geospatial",
layer = "Liesure&Recreation") %>%
st_transform(crs = 3414)Reading layer `Liesure&Recreation' from data source
`C:\cjh202311\isss624\Take-home_Ex\Take-home_Ex2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 1217 features and 30 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 6010.495 ymin: 25134.28 xmax: 48439.77 ymax: 50078.88
Projected CRS: SVY21 / Singapore TM
bs_num$`lr_num`<- lengths(
st_intersects(
bs_num, lr))summary(bs_num$lr_num) Min. 1st Qu. Median Mean 3rd Qu. Max.
0.000 0.000 0.000 1.307 1.000 41.000
Code
tmap_mode("plot")
tmap_options(check.and.fix = TRUE)
tm_shape(mpsz) +
tm_borders(alpha=0.7,col = "white")+
tm_polygons("darkgrey") + tm_shape(bs_num) +
tm_polygons(alpha=0.5, col = "darkgreen")+
tm_shape(lr) +
tm_dots(size = 0.05, col = "yellow") 
schools <- read_csv("data/aspatial/schools.csv") %>%
rename(latitude = "results.LATITUDE",
longitude = "results.LONGITUDE")%>%
select(postal_code, school_name, latitude, longitude)schools_sf <- st_as_sf(schools,
coords = c("longitude", "latitude"),
crs=4326) %>%
st_transform(crs = 3414)bs_num$`schools_num`<- lengths(
st_intersects(
bs_num, schools_sf))summary(bs_num$schools_num) Min. 1st Qu. Median Mean 3rd Qu. Max.
0.0000 0.0000 0.0000 0.4125 1.0000 4.0000
Code
tmap_mode("plot")
tmap_options(check.and.fix = TRUE)
tm_shape(mpsz) +
tm_borders(alpha=0.7,col = "white")+
tm_polygons("darkgrey") + tm_shape(bs_num) +
tm_polygons(alpha=0.5, col = "darkgreen")+
tm_shape(schools_sf) +
tm_dots(size = 0.05, col = "yellow") 
hdb <- read_csv("data/aspatial/hdb.csv") %>%
rename(latitude = "lat",
longitude = "lng")hdb_sf <- st_as_sf(hdb,
coords = c("longitude", "latitude"),
crs=4326) %>%
st_transform(crs = 3414)bs_num$`hdb_num`<- lengths(
st_intersects(
bs_num, hdb_sf))summary(bs_num$hdb_num) Min. 1st Qu. Median Mean 3rd Qu. Max.
0.00 0.00 0.00 14.85 27.00 103.00
Code
tmap_mode("plot")
tmap_options(check.and.fix = TRUE)
tm_shape(mpsz) +
tm_borders(alpha=0.7,col = "white")+
tm_polygons("darkgrey") + tm_shape(bs_num) +
tm_polygons(alpha=0.5, col = "darkgreen")+
tm_shape(hdb_sf) +
tm_dots(size = 0.05, col = "yellow") 
entertn <- st_read(dsn = "data/geospatial",
layer = "entertn") %>%
st_transform(crs = 3414)Reading layer `entertn' from data source
`C:\cjh202311\isss624\Take-home_Ex\Take-home_Ex2\data\geospatial'
using driver `ESRI Shapefile'
Simple feature collection with 114 features and 3 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 10809.34 ymin: 26528.63 xmax: 41600.62 ymax: 46375.77
Projected CRS: SVY21 / Singapore TM
bs_num$`entertn_num`<- lengths(
st_intersects(
bs_num, entertn))summary(bs_num$entertn_num) Min. 1st Qu. Median Mean 3rd Qu. Max.
0.0000 0.0000 0.0000 0.1331 0.0000 9.0000
Code
tmap_mode("plot")
tmap_options(check.and.fix = TRUE)
tm_shape(mpsz) +
tm_borders(alpha=0.7,col = "white")+
tm_polygons("darkgrey") +
tm_shape(bs_num) +
tm_polygons(alpha=0.5, col = "darkgreen")+
tm_shape(entertn) +
tm_dots(size = 0.05, col = "yellow") 
The data will be joined with :
bs_num_tidy <- bs_num %>%
st_drop_geometry() %>%
select(grid_id, BUSINESS_num, FB_num, lr_num, schools_num, hdb_num, entertn_num )flow_data <- od_data1 %>%
left_join(bs_num_tidy,
by = c("DESTIN_SZ" = "grid_id"))Code
summary(flow_data) ORIGIN_SZ DESTIN_SZ MORNING_PEAK BUSINESS_num
Min. : 23 Min. : 23 Min. : 1.0 Min. : 0.000
1st Qu.:1099 1st Qu.:1116 1st Qu.: 7.0 1st Qu.: 0.000
Median :1433 Median :1432 Median : 38.0 Median : 1.000
Mean :1416 Mean :1414 Mean : 385.1 Mean : 7.302
3rd Qu.:1728 3rd Qu.:1711 3rd Qu.: 180.0 3rd Qu.: 6.000
Max. :2505 Max. :2505 Max. :96644.0 Max. :97.000
FB_num lr_num schools_num hdb_num
Min. : 0.000 Min. : 0.000 Min. :0.0000 Min. : 0.00
1st Qu.: 0.000 1st Qu.: 0.000 1st Qu.:0.0000 1st Qu.: 0.00
Median : 0.000 Median : 1.000 Median :0.0000 Median : 10.00
Mean : 5.776 Mean : 2.368 Mean :0.5291 Mean : 19.39
3rd Qu.: 2.000 3rd Qu.: 3.000 3rd Qu.:1.0000 3rd Qu.: 34.00
Max. :133.000 Max. :41.000 Max. :4.0000 Max. :103.00
entertn_num
Min. :0.000
1st Qu.:0.000
Median :0.000
Mean :0.336
3rd Qu.:0.000
Max. :9.000
We can see there are 0 values in BUSINESS_num, FB_num, lr_num, schools_num, hdb_num, entertn_num.
The code chunk below will be used to replace zero values to 0.99 for the propulsive and attractiveness variables.
flow_data$BUSINESS_num <- ifelse(
flow_data$BUSINESS_num == 0,
0.99, flow_data$BUSINESS_num)
flow_data$FB_num <- ifelse(
flow_data$FB_num == 0,
0.99, flow_data$FB_num)
flow_data$lr_num <- ifelse(
flow_data$lr_num == 0,
0.99, flow_data$lr_num)
flow_data$schools_num <- ifelse(
flow_data$schools_num == 0,
0.99, flow_data$schools_num)
flow_data$hdb_num <- ifelse(
flow_data$hdb_num == 0,
0.99, flow_data$hdb_num)
flow_data$entertn_num<- ifelse(
flow_data$entertn_num == 0,
0.99, flow_data$entertn_num)Code
summary(flow_data) ORIGIN_SZ DESTIN_SZ MORNING_PEAK BUSINESS_num
Min. : 23 Min. : 23 Min. : 1.0 Min. : 0.990
1st Qu.:1099 1st Qu.:1116 1st Qu.: 7.0 1st Qu.: 0.990
Median :1433 Median :1432 Median : 38.0 Median : 1.000
Mean :1416 Mean :1414 Mean : 385.1 Mean : 7.729
3rd Qu.:1728 3rd Qu.:1711 3rd Qu.: 180.0 3rd Qu.: 6.000
Max. :2505 Max. :2505 Max. :96644.0 Max. :97.000
FB_num lr_num schools_num hdb_num
Min. : 0.990 Min. : 0.990 Min. :0.990 Min. : 0.99
1st Qu.: 0.990 1st Qu.: 0.990 1st Qu.:0.990 1st Qu.: 0.99
Median : 0.990 Median : 1.000 Median :0.990 Median : 10.00
Mean : 6.306 Mean : 2.769 Mean :1.171 Mean : 19.76
3rd Qu.: 2.000 3rd Qu.: 3.000 3rd Qu.:1.000 3rd Qu.: 34.00
Max. :133.000 Max. :41.000 Max. :4.000 Max. :103.00
entertn_num
Min. :0.990
1st Qu.:0.990
Median :0.990
Mean :1.183
3rd Qu.:0.990
Max. :9.000
Now, there is no zero values in our data.
Next we will remove duplicate record:
duplicate <- flow_data %>%
group_by_all() %>%
filter(n()>1) %>%
ungroup()flow_data <- unique(flow_data)Code
summary(flow_data) ORIGIN_SZ DESTIN_SZ MORNING_PEAK BUSINESS_num
Min. : 23 Min. : 23 Min. : 1.0 Min. : 0.990
1st Qu.:1099 1st Qu.:1116 1st Qu.: 7.0 1st Qu.: 0.990
Median :1433 Median :1432 Median : 38.0 Median : 1.000
Mean :1416 Mean :1414 Mean : 385.1 Mean : 7.729
3rd Qu.:1728 3rd Qu.:1711 3rd Qu.: 180.0 3rd Qu.: 6.000
Max. :2505 Max. :2505 Max. :96644.0 Max. :97.000
FB_num lr_num schools_num hdb_num
Min. : 0.990 Min. : 0.990 Min. :0.990 Min. : 0.99
1st Qu.: 0.990 1st Qu.: 0.990 1st Qu.:0.990 1st Qu.: 0.99
Median : 0.990 Median : 1.000 Median :0.990 Median : 10.00
Mean : 6.306 Mean : 2.769 Mean :1.171 Mean : 19.76
3rd Qu.: 2.000 3rd Qu.: 3.000 3rd Qu.:1.000 3rd Qu.: 34.00
Max. :133.000 Max. :41.000 Max. :4.000 Max. :103.00
entertn_num
Min. :0.990
1st Qu.:0.990
Median :0.990
Mean :1.183
3rd Qu.:0.990
Max. :9.000
The following table is explanatory variables to be used in the Spatial Interaction Modelling:
| No | Explanatory Variables |
|---|---|
| 1 | Business |
| 2 | F&B |
| 3 | Leisure&Rrecreation |
| 4 | schools |
| 5 | HDB |
| 6 | Entertainment |
8 Compute Distance Matrix
8.1 Converting from sf data.table to SpatialPolygonsDataFrame
First as.Spatial() will be used to convert bs_num from sf tibble data frame to SpatialPolygonsDataFrame of sp object as shown in the code chunk below. Computing distance matrix using sp than sf package.
bs_num_sp <- as(bs_num, "Spatial")8.2 Computing the distance matrix
Next, spDists() of sp package will be used to compute the Euclidean distance between the centroids of the hexagonsn.
The following code calculates the pairwise distances between the bus stations represented by bs_num_sp. The spDists function from the sp package is employed for this purpose. The distances are computed based on the spatial coordinates of the bus stations, and the result is stored in the variable dist. The parameter longlat = FALSE indicates that the distances should be computed in the native coordinate system (not considering latitude and longitude as spherical coordinates).
dist <- spDists(bs_num_sp,
longlat = FALSE)head(dist, n=c(10, 10)) [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8]
[1,] 0.000 750.000 3269.174 1500.000 2704.163 3968.627 1299.038 2250.000
[2,] 750.000 0.000 2598.076 750.000 1984.313 3269.174 750.000 1500.000
[3,] 3269.174 2598.076 0.000 1984.313 750.000 750.000 2704.163 1500.000
[4,] 1500.000 750.000 1984.313 0.000 1299.038 2598.076 750.000 750.000
[5,] 2704.163 1984.313 750.000 1299.038 0.000 1299.038 1984.313 750.000
[6,] 3968.627 3269.174 750.000 2598.076 1299.038 0.000 3269.174 1984.313
[7,] 1299.038 750.000 2704.163 750.000 1984.313 3269.174 0.000 1299.038
[8,] 2250.000 1500.000 1500.000 750.000 750.000 1984.313 1299.038 0.000
[9,] 3436.932 2704.163 750.000 1984.313 750.000 750.000 2598.076 1299.038
[10,] 4683.748 3968.627 1500.000 3269.174 1984.313 750.000 3897.114 2598.076
[,9] [,10]
[1,] 3436.932 4683.748
[2,] 2704.163 3968.627
[3,] 750.000 1500.000
[4,] 1984.313 3269.174
[5,] 750.000 1984.313
[6,] 750.000 750.000
[7,] 2598.076 3897.114
[8,] 1299.038 2598.076
[9,] 0.000 1299.038
[10,] 1299.038 0.000
8.3 Labelling column and row heanders of a distance matrix
First, we will create a list sorted according to the the distance matrix by grid_id.
grid_id_names <- bs_num$grid_idNext we will attach grid_id to row and column for distance matrix matching ahead.
colnames(dist) <- paste0(grid_id_names)
rownames(dist) <- paste0(grid_id_names)8.3 Pivoting distance value by Hexagon grid
We will pivot the distance matrix into a long table by using the row and column grid_id as show in the code chunk below.
The melt operation reshapes the matrix into a long format.
distPair <- reshape2::melt(dist) %>%
rename(dist = value)
head(distPair, 10) Var1 Var2 dist
1 23 23 0.000
2 44 23 750.000
3 46 23 3269.174
4 66 23 1500.000
5 67 23 2704.163
6 68 23 3968.627
7 86 23 1299.038
8 87 23 2250.000
9 88 23 3436.932
10 89 23 4683.748
8.4 Updating intra-zonal distances
First, we will select and find out the minimum value of the distance by using summary().
distPair %>%
filter(dist > 0) %>%
summary() Var1 Var2 dist
Min. : 23 Min. : 23 Min. : 750
1st Qu.: 871 1st Qu.: 871 1st Qu.: 8352
Median :1324 Median :1324 Median :13332
Mean :1269 Mean :1269 Mean :14162
3rd Qu.:1688 3rd Qu.:1688 3rd Qu.:18929
Max. :2505 Max. :2505 Max. :44680
The minimum distance is about 750, indicating travelling to adjacent hexagon.
Next, a constant distance value of 300 (middle to edge is 325) added into intra-zones distance.
distPair$dist <- ifelse(distPair$dist == 0,
300, distPair$dist)The code chunk below will be used to check the result data.frame.
distPair %>%
summary() Var1 Var2 dist
Min. : 23 Min. : 23 Min. : 300
1st Qu.: 871 1st Qu.: 871 1st Qu.: 8250
Median :1324 Median :1324 Median :13332
Mean :1269 Mean :1269 Mean :14145
3rd Qu.:1688 3rd Qu.:1688 3rd Qu.:18929
Max. :2505 Max. :2505 Max. :44680
The code chunk below is used to rename the origin and destination fields.
distPair <- distPair %>%
rename(ORIGIN_GRID_ID = Var1,
DESTIN_GRID_ID = Var2)
distPair %>% head() ORIGIN_GRID_ID DESTIN_GRID_ID dist
1 23 23 300.000
2 44 23 750.000
3 46 23 3269.174
4 66 23 1500.000
5 67 23 2704.163
6 68 23 3968.627
glimpse(distPair)Rows: 695,556
Columns: 3
$ ORIGIN_GRID_ID <int> 23, 44, 46, 66, 67, 68, 86, 87, 88, 89, 90, 109, 110, 1…
$ DESTIN_GRID_ID <int> 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,…
$ dist <dbl> 300.000, 750.000, 3269.174, 1500.000, 2704.163, 3968.62…
9 Spatial Interaction Modelling
9.1 Preparing Flow Data
In general, we will calibrate separate Spatial Interaction Models for inter- and intra-zonal flows. we will focus our attention on inter-zonal flow. Hence, we need to exclude the intra-zonal flow from flow_data.
First, two new columns called FlowNoIntra and offset will be created by using the code chunk below.
flow_data$FlowNoIntra <- ifelse(
flow_data$ORIGIN_SZ == flow_data$DESTIN_SZ,
0, flow_data$MORNING_PEAK)
flow_data$offset <- ifelse(
flow_data$ORIGIN_SZ == flow_data$DESTIN_SZ,
0.000001, 1)Now, we need to combine flow data with distance value:
flow_data$ORIGIN_SZ <- as.factor(flow_data$ORIGIN_SZ)
flow_data$DESTIN_SZ <- as.factor(flow_data$DESTIN_SZ)
distPair$ORIGIN_GRID_ID <- as.factor(distPair$ORIGIN_GRID_ID)
distPair$DESTIN_GRID_ID <- as.factor(distPair$DESTIN_GRID_ID)flow_data1 <- flow_data %>%
left_join (distPair,
by = c("ORIGIN_SZ" = "ORIGIN_GRID_ID",
"DESTIN_SZ" = "DESTIN_GRID_ID"))we need to remove duplicate:
duplicate <- flow_data1 %>%
group_by_all() %>%
filter(n()>1) %>%
ungroup()SIM_data <- unique(flow_data1)According to the syntax used to derive values in FlowNoIntra field, all intra-zonal flow will be given a value of 0 or else the original flow values will be inserted.
Next, inter-zonal flow will be selected from flow_data and save into a new output data.frame called inter_zonal_flow by using the code chunk below.
inter_zonal_flow <- SIM_data %>%
filter(FlowNoIntra > 0)summary(inter_zonal_flow) ORIGIN_SZ DESTIN_SZ MORNING_PEAK BUSINESS_num
1960 : 298 1474 : 347 Min. : 1.0 Min. : 0.990
1474 : 292 1452 : 339 1st Qu.: 7.0 1st Qu.: 0.990
1477 : 292 1516 : 326 Median : 38.0 Median : 1.000
1496 : 278 1960 : 295 Mean : 385.1 Mean : 7.729
1623 : 277 1477 : 294 3rd Qu.: 180.0 3rd Qu.: 6.000
1749 : 273 1494 : 292 Max. :96644.0 Max. :97.000
(Other):63252 (Other):63069
FB_num lr_num schools_num hdb_num
Min. : 0.990 Min. : 0.990 Min. :0.990 Min. : 0.99
1st Qu.: 0.990 1st Qu.: 0.990 1st Qu.:0.990 1st Qu.: 0.99
Median : 0.990 Median : 1.000 Median :0.990 Median : 10.00
Mean : 6.306 Mean : 2.769 Mean :1.171 Mean : 19.76
3rd Qu.: 2.000 3rd Qu.: 3.000 3rd Qu.:1.000 3rd Qu.: 34.00
Max. :133.000 Max. :41.000 Max. :4.000 Max. :103.00
entertn_num FlowNoIntra offset dist
Min. :0.990 Min. : 1.0 Min. :1 Min. : 750
1st Qu.:0.990 1st Qu.: 7.0 1st Qu.:1 1st Qu.: 3000
Median :0.990 Median : 38.0 Median :1 Median : 5408
Mean :1.183 Mean : 385.1 Mean :1 Mean : 6334
3rd Qu.:0.990 3rd Qu.: 180.0 3rd Qu.:1 3rd Qu.: 8842
Max. :9.000 Max. :96644.0 Max. :1 Max. :24784
9.2 Visualising the dependent variable
Code
ggplot(data = inter_zonal_flow,
aes(x = MORNING_PEAK)) +
geom_histogram(fill="darkgreen")+
theme_minimal()
We can see that all ‘MORNING_PEAK’ values are all positive values and its distribution is highly skewed to the right side.
Next, let us visualise the relation between the dependent variable and one of the key independent variable in Spatial Interaction Model, namely distance.
Code
ggplot(data = inter_zonal_flow,
aes(x = dist,
y = MORNING_PEAK)) +
geom_point(color = "darkgreen") +
geom_smooth(method = lm, color = "yellow") +
theme_minimal()
Their relationship hardly resemble linear relationship.
When we plot the scatter plot by using the log transformed version of both variables, we can see that their relationship is more resemble linear relationship.
Code
ggplot(data = inter_zonal_flow,
aes(x = log(dist),
y = log(MORNING_PEAK))) +
geom_point(color = "darkgreen") +
geom_smooth(method = lm, color = "yellow")+
theme_minimal()
9.3 Correlation Analysis
Before I proceed to do SIM, I will determine if there are any correlations between the variables. Conducting a correlation analysis is vital as it reveals linear relationships between variables, aiding in the identification of associations. This process helps avoid multicollinearity issues, optimizing regression models by selecting pertinent variables.
inter_zonal_flow$BUSINESS_num <- as.numeric(inter_zonal_flow$BUSINESS_num)
inter_zonal_flow$FB_num<- as.numeric(inter_zonal_flow$FB_num)
inter_zonal_flow$lr_num <- as.numeric(inter_zonal_flow$lr_num)
inter_zonal_flow$schools_num <- as.numeric(inter_zonal_flow$schools_num)
inter_zonal_flow$hdb_num <- as.numeric(inter_zonal_flow$hdb_num)
inter_zonal_flow$entertn_num <- as.numeric(inter_zonal_flow$entertn_num)
inter_zonal_flow$MORNING_PEAK<- as.numeric(inter_zonal_flow$MORNING_PEAK)Now, we draw the correlation matrix:
Code
vars.cor <- cor(inter_zonal_flow[, 3:9])
corrplot(
vars.cor,
method = "ellipse",
lower = "ellipse",
upper = "number",
tl.pos = "lt",
diag = FALSE,
addCoef.col = "black",
tl.col = "black",
col = colorRampPalette(c("yellow", "white","lightgreen"))(100) ,number.cex = 0.7
)
The correlation analysis revealed a notable relationship between the variables “F&B” and “Leisure & Recreation” with a correlation coefficient exceeding 80%. This high correlation suggests a strong linear association between the two variables. As a result, it is advisable to retain only one of them in subsequent analyses to avoid issues of multicol-linearity.
Therefore, we choose to remove “Leisure & Recreation” and remain “F&B”. The following table is new explanatory variables to be used in the Spatial Interaction Modelling:
| No | Explanatory Variables |
|---|---|
| 1 | Business |
| 2 | F&B |
| 3 | schools |
| 4 | HDB |
| 5 | Entertainment |
9.4 Calibrating Spatial Interaction Models
9.4.1 Unconstrained Spatial Interaction Model
The code chunk used to calibrate to model is shown below:
uncSIM <- glm(formula = MORNING_PEAK ~
log(BUSINESS_num) +
log(FB_num) +
log(schools_num) +
log(hdb_num) +
log(entertn_num)+
log(dist),
family = poisson(link = "log"),
data = inter_zonal_flow,
na.action = na.exclude)the calculated R-squared is 0.12527437, indicating that the model accounts for approximately 12.53% of the variability in the observed MORNING_PEAK.
Code
CalcRSquared <- function(observed,estimated){
r <- cor(observed,estimated)
R2 <- r^2
R2
}
CalcRSquared(uncSIM$data$MORNING_PEAK, uncSIM$fitted.values)[1] 0.1247437
Code
uncSIM$coefficients (Intercept) log(BUSINESS_num) log(FB_num) log(schools_num)
16.67686922 0.05927062 0.03310465 0.21753349
log(hdb_num) log(entertn_num) log(dist)
0.20942559 0.22414936 -1.41229192
Code
summary(uncSIM)
Call:
glm(formula = MORNING_PEAK ~ log(BUSINESS_num) + log(FB_num) +
log(schools_num) + log(hdb_num) + log(entertn_num) + log(dist),
family = poisson(link = "log"), data = inter_zonal_flow,
na.action = na.exclude)
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) 16.6768692 0.0019208 8682.0 <2e-16 ***
log(BUSINESS_num) 0.0592706 0.0001788 331.4 <2e-16 ***
log(FB_num) 0.0331046 0.0002402 137.8 <2e-16 ***
log(schools_num) 0.2175335 0.0006458 336.9 <2e-16 ***
log(hdb_num) 0.2094256 0.0001380 1517.7 <2e-16 ***
log(entertn_num) 0.2241494 0.0007501 298.8 <2e-16 ***
log(dist) -1.4122919 0.0002495 -5661.3 <2e-16 ***
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
(Dispersion parameter for poisson family taken to be 1)
Null deviance: 101244825 on 64961 degrees of freedom
Residual deviance: 62792208 on 64955 degrees of freedom
AIC: 63150592
Number of Fisher Scoring iterations: 7
9.4.2 Origin Constrained Model
Code chunk below shows the calibration of the model by using glm() of R and flow_data.
orcSIM <- glm(formula = MORNING_PEAK ~
ORIGIN_SZ +
log(BUSINESS_num) +
log(FB_num) +
log(schools_num) +
log(hdb_num) +
log(entertn_num)+
log(dist) - 1,
family = poisson(link = "log"),
data = inter_zonal_flow,
na.action = na.exclude)the calculated R-squared is 0.2402228, indicating that the model accounts for approximately 24.02% of the variability in the observed MORNING_PEAK.
Code
CalcRSquared(orcSIM$data$MORNING_PEAK, orcSIM$fitted.values)[1] 0.2402228
Code
orcSIM$coefficients[818:823]log(BUSINESS_num) log(FB_num) log(schools_num) log(hdb_num)
0.1145699 0.1319546 0.1776087 0.1227611
log(entertn_num) log(dist)
0.2532727 -1.4416487
Code
summary(orcSIM)
Call:
glm(formula = MORNING_PEAK ~ ORIGIN_SZ + log(BUSINESS_num) +
log(FB_num) + log(schools_num) + log(hdb_num) + log(entertn_num) +
log(dist) - 1, family = poisson(link = "log"), data = inter_zonal_flow,
na.action = na.exclude)
Coefficients:
Estimate Std. Error z value Pr(>|z|)
ORIGIN_SZ23 13.6371930 0.1270169 107.365 <2e-16 ***
ORIGIN_SZ44 14.3998717 0.1414392 101.810 <2e-16 ***
ORIGIN_SZ46 12.7403468 0.0924677 137.782 <2e-16 ***
ORIGIN_SZ66 13.5383719 0.1302054 103.977 <2e-16 ***
ORIGIN_SZ67 14.7573273 0.0259747 568.142 <2e-16 ***
ORIGIN_SZ68 12.8086473 0.1104479 115.970 <2e-16 ***
ORIGIN_SZ86 13.6730129 0.0803349 170.200 <2e-16 ***
ORIGIN_SZ87 15.3667022 0.0739574 207.778 <2e-16 ***
ORIGIN_SZ88 15.5861467 0.0189635 821.902 <2e-16 ***
ORIGIN_SZ89 13.5665982 0.0496043 273.497 <2e-16 ***
ORIGIN_SZ90 12.9063595 0.1231060 104.839 <2e-16 ***
ORIGIN_SZ109 13.5231995 0.0894638 151.158 <2e-16 ***
ORIGIN_SZ110 13.7067486 0.0762736 179.705 <2e-16 ***
ORIGIN_SZ111 16.5576703 0.0114502 1446.065 <2e-16 ***
ORIGIN_SZ112 12.8861335 0.0685468 187.990 <2e-16 ***
ORIGIN_SZ128 16.1234129 0.0232791 692.612 <2e-16 ***
ORIGIN_SZ129 13.1831647 0.1767892 74.570 <2e-16 ***
ORIGIN_SZ130 14.1769985 0.0527377 268.821 <2e-16 ***
ORIGIN_SZ131 14.4127053 0.0316185 455.831 <2e-16 ***
ORIGIN_SZ132 13.2849004 0.0532608 249.431 <2e-16 ***
ORIGIN_SZ133 13.5237671 0.0408696 330.900 <2e-16 ***
ORIGIN_SZ134 15.8966693 0.0242145 656.493 <2e-16 ***
ORIGIN_SZ150 16.2978631 0.0198543 820.871 <2e-16 ***
ORIGIN_SZ151 13.3718598 0.0662482 201.845 <2e-16 ***
ORIGIN_SZ152 12.6979398 0.0824984 153.917 <2e-16 ***
ORIGIN_SZ153 14.0984175 0.0420025 335.656 <2e-16 ***
ORIGIN_SZ154 16.6825926 0.0090750 1838.297 <2e-16 ***
ORIGIN_SZ155 13.5966151 0.0355186 382.802 <2e-16 ***
ORIGIN_SZ156 14.4620608 0.0435180 332.324 <2e-16 ***
ORIGIN_SZ172 14.9911064 0.0639192 234.532 <2e-16 ***
ORIGIN_SZ174 13.9885171 0.0470199 297.502 <2e-16 ***
ORIGIN_SZ175 16.0977944 0.0103197 1559.915 <2e-16 ***
ORIGIN_SZ176 17.2536974 0.0062502 2760.506 <2e-16 ***
ORIGIN_SZ195 13.0764242 0.0781080 167.415 <2e-16 ***
ORIGIN_SZ196 13.6161083 0.0386532 352.263 <2e-16 ***
ORIGIN_SZ197 12.5024177 0.1240488 100.786 <2e-16 ***
ORIGIN_SZ215 13.9064176 0.0864108 160.934 <2e-16 ***
ORIGIN_SZ216 17.5183224 0.0053407 3280.184 <2e-16 ***
ORIGIN_SZ217 14.8690446 0.0212652 699.221 <2e-16 ***
ORIGIN_SZ237 12.5225365 0.1666773 75.130 <2e-16 ***
ORIGIN_SZ238 13.2478875 0.0712749 185.870 <2e-16 ***
ORIGIN_SZ239 13.5878274 0.1360979 99.839 <2e-16 ***
ORIGIN_SZ257 13.5014239 0.0577665 233.724 <2e-16 ***
ORIGIN_SZ258 14.4462515 0.0285670 505.696 <2e-16 ***
ORIGIN_SZ259 14.2502358 0.0396690 359.228 <2e-16 ***
ORIGIN_SZ278 15.2806884 0.0346581 440.899 <2e-16 ***
ORIGIN_SZ279 13.2379013 0.0441496 299.842 <2e-16 ***
ORIGIN_SZ280 13.6300652 0.0479320 284.363 <2e-16 ***
ORIGIN_SZ298 10.8564638 0.3333387 32.569 <2e-16 ***
ORIGIN_SZ299 13.3702118 0.0523537 255.382 <2e-16 ***
ORIGIN_SZ300 16.5175377 0.0085691 1927.569 <2e-16 ***
ORIGIN_SZ320 13.8490521 0.0489461 282.945 <2e-16 ***
ORIGIN_SZ321 13.8203889 0.0747682 184.843 <2e-16 ***
ORIGIN_SZ322 14.7251265 0.0400786 367.406 <2e-16 ***
ORIGIN_SZ340 15.1031677 0.0271520 556.245 <2e-16 ***
ORIGIN_SZ341 13.6159022 0.0449413 302.971 <2e-16 ***
ORIGIN_SZ342 14.3919596 0.0401117 358.797 <2e-16 ***
ORIGIN_SZ363 15.1936277 0.0371860 408.585 <2e-16 ***
ORIGIN_SZ364 14.9481077 0.0265721 562.548 <2e-16 ***
ORIGIN_SZ383 14.4593095 0.0306462 471.813 <2e-16 ***
ORIGIN_SZ384 13.3345107 0.0488324 273.067 <2e-16 ***
ORIGIN_SZ385 14.6340720 0.0465590 314.313 <2e-16 ***
ORIGIN_SZ404 15.3464320 0.0290339 528.569 <2e-16 ***
ORIGIN_SZ405 14.1098214 0.0514680 274.148 <2e-16 ***
ORIGIN_SZ406 18.4385147 0.0030793 5987.858 <2e-16 ***
ORIGIN_SZ407 14.9931251 0.0390034 384.405 <2e-16 ***
ORIGIN_SZ408 15.6956577 0.0197654 794.099 <2e-16 ***
ORIGIN_SZ425 12.6447000 0.0966917 130.773 <2e-16 ***
ORIGIN_SZ426 14.4895031 0.0302644 478.763 <2e-16 ***
ORIGIN_SZ427 13.3984445 0.0423405 316.445 <2e-16 ***
ORIGIN_SZ428 13.6274613 0.0739488 184.282 <2e-16 ***
ORIGIN_SZ429 16.1986156 0.0173204 935.232 <2e-16 ***
ORIGIN_SZ446 14.1674529 0.0583537 242.786 <2e-16 ***
ORIGIN_SZ447 13.7207898 0.0402379 340.991 <2e-16 ***
ORIGIN_SZ448 14.5657430 0.0270316 538.842 <2e-16 ***
ORIGIN_SZ449 17.3659003 0.0062471 2779.836 <2e-16 ***
ORIGIN_SZ450 15.5758092 0.0174042 894.948 <2e-16 ***
ORIGIN_SZ468 14.6220318 0.0306029 477.798 <2e-16 ***
ORIGIN_SZ469 15.4969625 0.0151304 1024.228 <2e-16 ***
ORIGIN_SZ470 17.8317688 0.0046273 3853.623 <2e-16 ***
ORIGIN_SZ471 16.3895329 0.0146396 1119.533 <2e-16 ***
ORIGIN_SZ488 14.2719675 0.0553340 257.924 <2e-16 ***
ORIGIN_SZ489 11.7898296 0.1601388 73.623 <2e-16 ***
ORIGIN_SZ490 16.0200378 0.0123690 1295.177 <2e-16 ***
ORIGIN_SZ491 16.5599799 0.0077078 2148.476 <2e-16 ***
ORIGIN_SZ493 11.6084215 0.1690415 68.672 <2e-16 ***
ORIGIN_SZ494 13.6638105 0.0626515 218.092 <2e-16 ***
ORIGIN_SZ509 14.2544412 0.0365823 389.654 <2e-16 ***
ORIGIN_SZ510 14.8590608 0.0252682 588.055 <2e-16 ***
ORIGIN_SZ511 15.6890545 0.0110488 1419.978 <2e-16 ***
ORIGIN_SZ512 18.2483529 0.0034565 5279.402 <2e-16 ***
ORIGIN_SZ513 14.9710746 0.0244058 613.422 <2e-16 ***
ORIGIN_SZ514 14.2955817 0.0388243 368.213 <2e-16 ***
ORIGIN_SZ515 12.0129762 0.1525101 78.768 <2e-16 ***
ORIGIN_SZ530 13.5662242 0.0870589 155.828 <2e-16 ***
ORIGIN_SZ531 14.8866777 0.0193348 769.944 <2e-16 ***
ORIGIN_SZ532 14.1788122 0.0252809 560.851 <2e-16 ***
ORIGIN_SZ533 18.1101815 0.0034565 5239.399 <2e-16 ***
ORIGIN_SZ534 18.3426395 0.0037958 4832.369 <2e-16 ***
ORIGIN_SZ536 14.9570996 0.0252874 591.485 <2e-16 ***
ORIGIN_SZ537 12.6594397 0.1221845 103.609 <2e-16 ***
ORIGIN_SZ538 12.9636969 0.2085257 62.168 <2e-16 ***
ORIGIN_SZ539 11.7682512 1.0000024 11.768 <2e-16 ***
ORIGIN_SZ551 13.6201379 0.0530872 256.561 <2e-16 ***
ORIGIN_SZ552 15.6980843 0.0361772 433.921 <2e-16 ***
ORIGIN_SZ553 14.7751096 0.0174875 844.894 <2e-16 ***
ORIGIN_SZ554 18.0270233 0.0037604 4793.855 <2e-16 ***
ORIGIN_SZ555 17.4175108 0.0069378 2510.514 <2e-16 ***
ORIGIN_SZ559 13.4044730 0.0976085 137.329 <2e-16 ***
ORIGIN_SZ560 15.5654515 0.0450009 345.892 <2e-16 ***
ORIGIN_SZ561 9.4248423 1.0000015 9.425 <2e-16 ***
ORIGIN_SZ572 10.6932892 0.4082524 26.193 <2e-16 ***
ORIGIN_SZ573 13.8999804 0.0419978 330.969 <2e-16 ***
ORIGIN_SZ574 14.8602990 0.0368346 403.433 <2e-16 ***
ORIGIN_SZ575 18.8258723 0.0025888 7272.166 <2e-16 ***
ORIGIN_SZ576 17.4929353 0.0049323 3546.622 <2e-16 ***
ORIGIN_SZ578 12.7145754 0.0976084 130.261 <2e-16 ***
ORIGIN_SZ582 13.0664380 0.1048447 124.627 <2e-16 ***
ORIGIN_SZ583 12.8770345 0.4082548 31.542 <2e-16 ***
ORIGIN_SZ584 15.6344658 0.0514784 303.709 <2e-16 ***
ORIGIN_SZ593 14.0990971 0.0482095 292.455 <2e-16 ***
ORIGIN_SZ594 15.0264706 0.0252806 594.387 <2e-16 ***
ORIGIN_SZ595 14.5664960 0.0188263 773.731 <2e-16 ***
ORIGIN_SZ596 17.3914121 0.0043625 3986.534 <2e-16 ***
ORIGIN_SZ597 13.9937538 0.0573885 243.842 <2e-16 ***
ORIGIN_SZ603 13.2842312 0.1097807 121.007 <2e-16 ***
ORIGIN_SZ604 13.9890671 0.1825893 76.615 <2e-16 ***
ORIGIN_SZ615 13.2733065 0.0459705 288.735 <2e-16 ***
ORIGIN_SZ616 14.1815503 0.0313998 451.644 <2e-16 ***
ORIGIN_SZ617 15.0887684 0.0181672 830.548 <2e-16 ***
ORIGIN_SZ618 17.8726200 0.0038927 4591.345 <2e-16 ***
ORIGIN_SZ620 14.6951703 0.0298798 491.810 <2e-16 ***
ORIGIN_SZ637 13.7311618 0.0414944 330.916 <2e-16 ***
ORIGIN_SZ638 17.4594446 0.0042411 4116.696 <2e-16 ***
ORIGIN_SZ657 15.3266460 0.0164622 931.018 <2e-16 ***
ORIGIN_SZ658 16.6465542 0.0063674 2614.324 <2e-16 ***
ORIGIN_SZ659 17.0727059 0.0054192 3150.409 <2e-16 ***
ORIGIN_SZ660 18.0546541 0.0034751 5195.497 <2e-16 ***
ORIGIN_SZ662 17.6795684 0.0070293 2515.114 <2e-16 ***
ORIGIN_SZ677 15.3085069 0.0225131 679.981 <2e-16 ***
ORIGIN_SZ678 13.1730119 0.0465651 282.894 <2e-16 ***
ORIGIN_SZ679 17.8361654 0.0037366 4773.385 <2e-16 ***
ORIGIN_SZ680 17.8861785 0.0037006 4833.329 <2e-16 ***
ORIGIN_SZ681 17.0974098 0.0082779 2065.437 <2e-16 ***
ORIGIN_SZ699 14.8049075 0.0224525 659.387 <2e-16 ***
ORIGIN_SZ700 16.8448335 0.0060781 2771.419 <2e-16 ***
ORIGIN_SZ701 17.0874053 0.0060985 2801.893 <2e-16 ***
ORIGIN_SZ702 17.8904517 0.0036723 4871.694 <2e-16 ***
ORIGIN_SZ704 14.6423770 0.0318113 460.289 <2e-16 ***
ORIGIN_SZ722 15.0971464 0.0182973 825.100 <2e-16 ***
ORIGIN_SZ725 14.1390478 0.0403717 350.221 <2e-16 ***
ORIGIN_SZ741 15.3717380 0.0163132 942.288 <2e-16 ***
ORIGIN_SZ743 15.4104237 0.0123741 1245.373 <2e-16 ***
ORIGIN_SZ744 17.4075162 0.0045911 3791.592 <2e-16 ***
ORIGIN_SZ761 14.9755110 0.0276262 542.077 <2e-16 ***
ORIGIN_SZ762 16.9138856 0.0071539 2364.289 <2e-16 ***
ORIGIN_SZ763 13.9949136 0.0268781 520.681 <2e-16 ***
ORIGIN_SZ764 17.7357820 0.0035970 4930.684 <2e-16 ***
ORIGIN_SZ765 17.1650783 0.0082780 2073.580 <2e-16 ***
ORIGIN_SZ767 18.4189935 0.0038082 4836.676 <2e-16 ***
ORIGIN_SZ772 13.2126349 0.0743554 177.696 <2e-16 ***
ORIGIN_SZ784 13.9607428 0.0265350 526.126 <2e-16 ***
ORIGIN_SZ785 17.0670025 0.0044596 3827.033 <2e-16 ***
ORIGIN_SZ786 16.5649178 0.0061046 2713.529 <2e-16 ***
ORIGIN_SZ787 17.1908544 0.0072233 2379.925 <2e-16 ***
ORIGIN_SZ788 17.7502995 0.0053234 3334.414 <2e-16 ***
ORIGIN_SZ789 16.6504584 0.0102988 1616.741 <2e-16 ***
ORIGIN_SZ803 13.2713650 0.0530349 250.238 <2e-16 ***
ORIGIN_SZ804 17.8525192 0.0042235 4226.995 <2e-16 ***
ORIGIN_SZ805 17.6333880 0.0036250 4864.383 <2e-16 ***
ORIGIN_SZ806 17.2991957 0.0043960 3935.206 <2e-16 ***
ORIGIN_SZ807 18.1058259 0.0042935 4217.058 <2e-16 ***
ORIGIN_SZ808 16.3953247 0.0108686 1508.505 <2e-16 ***
ORIGIN_SZ809 18.0342351 0.0036208 4980.785 <2e-16 ***
ORIGIN_SZ810 17.7054029 0.0056553 3130.738 <2e-16 ***
ORIGIN_SZ814 14.8119714 0.0266605 555.577 <2e-16 ***
ORIGIN_SZ819 19.3294862 0.0173205 1115.986 <2e-16 ***
ORIGIN_SZ824 14.2455165 0.0380635 374.257 <2e-16 ***
ORIGIN_SZ826 15.4797766 0.0099712 1552.441 <2e-16 ***
ORIGIN_SZ827 17.5706855 0.0039825 4411.971 <2e-16 ***
ORIGIN_SZ828 17.5499238 0.0038700 4534.868 <2e-16 ***
ORIGIN_SZ829 17.7009087 0.0046123 3837.781 <2e-16 ***
ORIGIN_SZ830 17.7134562 0.0050901 3479.957 <2e-16 ***
ORIGIN_SZ831 18.3203797 0.0031379 5838.510 <2e-16 ***
ORIGIN_SZ832 17.5766317 0.0060303 2914.721 <2e-16 ***
ORIGIN_SZ835 14.8318746 0.0286578 517.552 <2e-16 ***
ORIGIN_SZ844 13.2377980 0.0741515 178.524 <2e-16 ***
ORIGIN_SZ846 16.9724733 0.0053483 3173.445 <2e-16 ***
ORIGIN_SZ847 15.9800068 0.0090625 1763.305 <2e-16 ***
ORIGIN_SZ848 17.1110257 0.0048783 3507.602 <2e-16 ***
ORIGIN_SZ849 16.2586270 0.0076302 2130.829 <2e-16 ***
ORIGIN_SZ850 17.0213712 0.0054835 3104.090 <2e-16 ***
ORIGIN_SZ851 17.5785225 0.0042340 4151.722 <2e-16 ***
ORIGIN_SZ852 17.2742105 0.0060313 2864.093 <2e-16 ***
ORIGIN_SZ853 19.2389259 0.0037278 5160.939 <2e-16 ***
ORIGIN_SZ854 15.0017024 0.0252145 594.962 <2e-16 ***
ORIGIN_SZ855 13.9013801 0.0430339 323.033 <2e-16 ***
ORIGIN_SZ856 15.3862908 0.0181233 848.976 <2e-16 ***
ORIGIN_SZ866 14.9281528 0.0266072 561.056 <2e-16 ***
ORIGIN_SZ867 15.7466425 0.0116342 1353.475 <2e-16 ***
ORIGIN_SZ868 15.0710856 0.0175774 857.412 <2e-16 ***
ORIGIN_SZ869 17.6655547 0.0059891 2949.640 <2e-16 ***
ORIGIN_SZ870 17.9894473 0.0031919 5635.946 <2e-16 ***
ORIGIN_SZ871 17.4912169 0.0056735 3082.941 <2e-16 ***
ORIGIN_SZ872 15.6964057 0.0110250 1423.710 <2e-16 ***
ORIGIN_SZ873 16.2263022 0.0098449 1648.193 <2e-16 ***
ORIGIN_SZ874 16.3633059 0.0078839 2075.535 <2e-16 ***
ORIGIN_SZ875 13.2263330 0.0649850 203.529 <2e-16 ***
ORIGIN_SZ876 14.3211345 0.0301697 474.686 <2e-16 ***
ORIGIN_SZ877 13.7215617 0.0389380 352.396 <2e-16 ***
ORIGIN_SZ887 15.3800244 0.0131646 1168.288 <2e-16 ***
ORIGIN_SZ888 16.7541544 0.0068828 2434.196 <2e-16 ***
ORIGIN_SZ889 13.9707130 0.0311131 449.031 <2e-16 ***
ORIGIN_SZ890 17.6736621 0.0038271 4617.999 <2e-16 ***
ORIGIN_SZ891 16.7746864 0.0109459 1532.502 <2e-16 ***
ORIGIN_SZ893 17.5985296 0.0040879 4305.069 <2e-16 ***
ORIGIN_SZ894 15.8470957 0.0103608 1529.521 <2e-16 ***
ORIGIN_SZ895 15.3861702 0.0149665 1028.044 <2e-16 ***
ORIGIN_SZ896 14.5807779 0.0289360 503.898 <2e-16 ***
ORIGIN_SZ897 12.9424322 0.0608868 212.565 <2e-16 ***
ORIGIN_SZ898 14.5951677 0.0309920 470.934 <2e-16 ***
ORIGIN_SZ908 16.5864777 0.0118096 1404.494 <2e-16 ***
ORIGIN_SZ909 16.8259457 0.0056513 2977.343 <2e-16 ***
ORIGIN_SZ910 14.8991599 0.0162636 916.104 <2e-16 ***
ORIGIN_SZ911 16.1698529 0.0086363 1872.316 <2e-16 ***
ORIGIN_SZ912 17.3790211 0.0043210 4022.014 <2e-16 ***
ORIGIN_SZ915 17.5858671 0.0043692 4024.942 <2e-16 ***
ORIGIN_SZ917 16.9766226 0.0071239 2383.059 <2e-16 ***
ORIGIN_SZ918 13.5562937 0.0381183 355.638 <2e-16 ***
ORIGIN_SZ919 16.5729445 0.0090950 1822.196 <2e-16 ***
ORIGIN_SZ928 15.9211622 0.0129943 1225.240 <2e-16 ***
ORIGIN_SZ929 17.2839509 0.0045412 3806.021 <2e-16 ***
ORIGIN_SZ930 17.9335099 0.0032500 5518.036 <2e-16 ***
ORIGIN_SZ931 14.9537314 0.0165995 900.854 <2e-16 ***
ORIGIN_SZ932 15.5329896 0.0173966 892.876 <2e-16 ***
ORIGIN_SZ933 17.1852612 0.0055670 3086.967 <2e-16 ***
ORIGIN_SZ934 14.6448385 0.0189045 774.673 <2e-16 ***
ORIGIN_SZ935 18.1361001 0.0032278 5618.799 <2e-16 ***
ORIGIN_SZ938 11.3262623 0.2500064 45.304 <2e-16 ***
ORIGIN_SZ939 18.2203410 0.0038382 4747.112 <2e-16 ***
ORIGIN_SZ940 13.4542375 0.0707351 190.206 <2e-16 ***
ORIGIN_SZ949 15.5500869 0.0128918 1206.204 <2e-16 ***
ORIGIN_SZ950 17.5448610 0.0048540 3614.515 <2e-16 ***
ORIGIN_SZ951 18.3263309 0.0029195 6277.218 <2e-16 ***
ORIGIN_SZ952 15.4810011 0.0199869 774.556 <2e-16 ***
ORIGIN_SZ953 16.2868574 0.0092849 1754.117 <2e-16 ***
ORIGIN_SZ954 14.7757276 0.0164872 896.192 <2e-16 ***
ORIGIN_SZ955 16.9560761 0.0056181 3018.135 <2e-16 ***
ORIGIN_SZ956 15.5897678 0.0112334 1387.807 <2e-16 ***
ORIGIN_SZ957 17.5949922 0.0055287 3182.462 <2e-16 ***
ORIGIN_SZ959 14.2206827 0.0475470 299.087 <2e-16 ***
ORIGIN_SZ961 14.2766045 0.0300752 474.697 <2e-16 ***
ORIGIN_SZ962 20.8976545 0.0043068 4852.282 <2e-16 ***
ORIGIN_SZ970 16.2227070 0.0078012 2079.518 <2e-16 ***
ORIGIN_SZ971 17.4400527 0.0038853 4488.731 <2e-16 ***
ORIGIN_SZ972 17.2973924 0.0046482 3721.306 <2e-16 ***
ORIGIN_SZ974 16.6121450 0.0071690 2317.216 <2e-16 ***
ORIGIN_SZ975 16.1664749 0.0087039 1857.378 <2e-16 ***
ORIGIN_SZ976 14.8426151 0.0161924 916.639 <2e-16 ***
ORIGIN_SZ977 17.9138171 0.0037713 4750.011 <2e-16 ***
ORIGIN_SZ978 17.5144153 0.0067425 2597.620 <2e-16 ***
ORIGIN_SZ982 15.2697903 0.0147378 1036.094 <2e-16 ***
ORIGIN_SZ983 19.4536457 0.0036891 5273.313 <2e-16 ***
ORIGIN_SZ984 20.4588360 0.0037498 5456.034 <2e-16 ***
ORIGIN_SZ991 16.1332824 0.0086793 1858.817 <2e-16 ***
ORIGIN_SZ992 16.5476491 0.0067024 2468.924 <2e-16 ***
ORIGIN_SZ993 16.2014426 0.0073093 2216.562 <2e-16 ***
ORIGIN_SZ994 15.6249219 0.0105202 1485.236 <2e-16 ***
ORIGIN_SZ995 17.0095467 0.0055152 3084.131 <2e-16 ***
ORIGIN_SZ996 16.5201226 0.0075208 2196.585 <2e-16 ***
ORIGIN_SZ997 15.2338301 0.0272369 559.309 <2e-16 ***
ORIGIN_SZ998 17.9316125 0.0039349 4557.042 <2e-16 ***
ORIGIN_SZ999 17.7806896 0.0053853 3301.706 <2e-16 ***
ORIGIN_SZ1001 15.1943346 0.0243451 624.124 <2e-16 ***
ORIGIN_SZ1003 17.7086416 0.0041860 4230.450 <2e-16 ***
ORIGIN_SZ1004 18.7084064 0.0031010 6033.053 <2e-16 ***
ORIGIN_SZ1011 14.4242685 0.0306652 470.379 <2e-16 ***
ORIGIN_SZ1012 14.3653894 0.0317143 452.963 <2e-16 ***
ORIGIN_SZ1013 14.9217385 0.0162294 919.427 <2e-16 ***
ORIGIN_SZ1014 15.6310058 0.0105197 1485.873 <2e-16 ***
ORIGIN_SZ1015 15.0082113 0.0151484 990.748 <2e-16 ***
ORIGIN_SZ1016 16.5108802 0.0069950 2360.393 <2e-16 ***
ORIGIN_SZ1018 16.9118973 0.0094362 1792.238 <2e-16 ***
ORIGIN_SZ1019 18.2240517 0.0045807 3978.478 <2e-16 ***
ORIGIN_SZ1023 16.9478047 0.0090463 1873.446 <2e-16 ***
ORIGIN_SZ1024 17.8882428 0.0044011 4064.448 <2e-16 ***
ORIGIN_SZ1025 13.4161881 0.0503526 266.445 <2e-16 ***
ORIGIN_SZ1033 15.7281525 0.0109806 1432.352 <2e-16 ***
ORIGIN_SZ1034 16.4622342 0.0070706 2328.273 <2e-16 ***
ORIGIN_SZ1035 17.0175874 0.0053460 3183.246 <2e-16 ***
ORIGIN_SZ1036 14.9981236 0.0145805 1028.645 <2e-16 ***
ORIGIN_SZ1037 16.2569727 0.0070914 2292.502 <2e-16 ***
ORIGIN_SZ1043 15.3468492 0.0243143 631.185 <2e-16 ***
ORIGIN_SZ1045 17.5446886 0.0044607 3933.180 <2e-16 ***
ORIGIN_SZ1046 17.5690418 0.0048338 3634.589 <2e-16 ***
ORIGIN_SZ1053 17.0482674 0.0055621 3065.053 <2e-16 ***
ORIGIN_SZ1054 16.1264585 0.0081173 1986.674 <2e-16 ***
ORIGIN_SZ1055 17.1745708 0.0051379 3342.746 <2e-16 ***
ORIGIN_SZ1056 15.9674255 0.0090233 1769.581 <2e-16 ***
ORIGIN_SZ1064 12.3515552 0.2357114 52.401 <2e-16 ***
ORIGIN_SZ1066 17.4675852 0.0048829 3577.285 <2e-16 ***
ORIGIN_SZ1067 18.2092070 0.0048137 3782.777 <2e-16 ***
ORIGIN_SZ1074 16.5041368 0.0073942 2232.040 <2e-16 ***
ORIGIN_SZ1075 15.8293613 0.0103037 1536.282 <2e-16 ***
ORIGIN_SZ1076 15.8668483 0.0084831 1870.411 <2e-16 ***
ORIGIN_SZ1077 15.9571328 0.0097779 1631.954 <2e-16 ***
ORIGIN_SZ1079 17.1039960 0.0053788 3179.872 <2e-16 ***
ORIGIN_SZ1085 12.1109582 0.1715081 70.615 <2e-16 ***
ORIGIN_SZ1087 17.4100897 0.0056356 3089.313 <2e-16 ***
ORIGIN_SZ1088 15.9284011 0.0116615 1365.897 <2e-16 ***
ORIGIN_SZ1094 14.3805147 0.0436091 329.759 <2e-16 ***
ORIGIN_SZ1095 14.1880671 0.0378146 375.201 <2e-16 ***
ORIGIN_SZ1096 15.5219587 0.0199667 777.391 <2e-16 ***
ORIGIN_SZ1097 17.5998586 0.0036735 4791.047 <2e-16 ***
ORIGIN_SZ1098 14.9959718 0.0176236 850.904 <2e-16 ***
ORIGIN_SZ1099 16.5349889 0.0067429 2452.198 <2e-16 ***
ORIGIN_SZ1105 13.9513739 0.0629021 221.795 <2e-16 ***
ORIGIN_SZ1106 12.8175448 0.0976082 131.316 <2e-16 ***
ORIGIN_SZ1107 15.1004258 0.0284068 531.579 <2e-16 ***
ORIGIN_SZ1108 18.8491538 0.0027024 6974.858 <2e-16 ***
ORIGIN_SZ1109 17.2621428 0.0076247 2263.986 <2e-16 ***
ORIGIN_SZ1116 16.1425420 0.0084859 1902.285 <2e-16 ***
ORIGIN_SZ1117 14.3919944 0.0200365 718.288 <2e-16 ***
ORIGIN_SZ1118 14.8832097 0.0175739 846.891 <2e-16 ***
ORIGIN_SZ1119 15.6988100 0.0099022 1585.385 <2e-16 ***
ORIGIN_SZ1120 15.6026711 0.0131989 1182.122 <2e-16 ***
ORIGIN_SZ1129 17.8887417 0.0046310 3862.852 <2e-16 ***
ORIGIN_SZ1130 17.9423656 0.0039677 4522.118 <2e-16 ***
ORIGIN_SZ1131 17.2812365 0.0077484 2230.290 <2e-16 ***
ORIGIN_SZ1136 15.1401467 0.0139465 1085.589 <2e-16 ***
ORIGIN_SZ1138 13.5485756 0.0348462 388.811 <2e-16 ***
ORIGIN_SZ1139 16.7689109 0.0051900 3230.997 <2e-16 ***
ORIGIN_SZ1141 16.6419060 0.0064198 2592.293 <2e-16 ***
ORIGIN_SZ1148 14.3545613 0.0518209 277.003 <2e-16 ***
ORIGIN_SZ1149 15.5939722 0.0179001 871.167 <2e-16 ***
ORIGIN_SZ1150 18.0447573 0.0036594 4931.099 <2e-16 ***
ORIGIN_SZ1151 16.9127040 0.0063950 2644.658 <2e-16 ***
ORIGIN_SZ1158 15.3354911 0.0112612 1361.802 <2e-16 ***
ORIGIN_SZ1159 16.6051372 0.0056516 2938.147 <2e-16 ***
ORIGIN_SZ1160 17.4424957 0.0038656 4512.231 <2e-16 ***
ORIGIN_SZ1171 18.2590896 0.0039071 4673.341 <2e-16 ***
ORIGIN_SZ1172 17.9647726 0.0037956 4733.088 <2e-16 ***
ORIGIN_SZ1173 15.6285169 0.0123789 1262.517 <2e-16 ***
ORIGIN_SZ1174 11.2006347 0.2500068 44.801 <2e-16 ***
ORIGIN_SZ1178 15.4278845 0.0103804 1486.258 <2e-16 ***
ORIGIN_SZ1179 16.1388868 0.0068003 2373.265 <2e-16 ***
ORIGIN_SZ1180 17.1027424 0.0043943 3892.034 <2e-16 ***
ORIGIN_SZ1181 16.3050209 0.0065629 2484.436 <2e-16 ***
ORIGIN_SZ1183 15.2862074 0.0128500 1189.585 <2e-16 ***
ORIGIN_SZ1190 13.9798415 0.0473911 294.989 <2e-16 ***
ORIGIN_SZ1192 17.1710646 0.0061751 2780.714 <2e-16 ***
ORIGIN_SZ1193 17.1840495 0.0052558 3269.530 <2e-16 ***
ORIGIN_SZ1194 15.5375128 0.0135237 1148.913 <2e-16 ***
ORIGIN_SZ1200 16.4051265 0.0067246 2439.587 <2e-16 ***
ORIGIN_SZ1201 16.0967893 0.0071092 2264.212 <2e-16 ***
ORIGIN_SZ1203 16.7069062 0.0059102 2826.815 <2e-16 ***
ORIGIN_SZ1204 16.5225488 0.0066617 2480.248 <2e-16 ***
ORIGIN_SZ1211 13.2000874 0.1042750 126.589 <2e-16 ***
ORIGIN_SZ1214 17.8404346 0.0041052 4345.771 <2e-16 ***
ORIGIN_SZ1215 14.4207385 0.0401156 359.480 <2e-16 ***
ORIGIN_SZ1216 13.9155779 0.0399508 348.318 <2e-16 ***
ORIGIN_SZ1220 17.2886422 0.0042926 4027.542 <2e-16 ***
ORIGIN_SZ1221 16.9095312 0.0046951 3601.520 <2e-16 ***
ORIGIN_SZ1222 16.5884845 0.0095562 1735.893 <2e-16 ***
ORIGIN_SZ1223 14.7289494 0.0167412 879.800 <2e-16 ***
ORIGIN_SZ1224 15.5551872 0.0103739 1499.453 <2e-16 ***
ORIGIN_SZ1231 12.4108180 0.1443503 85.977 <2e-16 ***
ORIGIN_SZ1232 13.7359956 0.0916933 149.804 <2e-16 ***
ORIGIN_SZ1235 15.2094135 0.0135668 1121.077 <2e-16 ***
ORIGIN_SZ1236 15.3220495 0.0147378 1039.642 <2e-16 ***
ORIGIN_SZ1241 15.5280838 0.0103770 1496.397 <2e-16 ***
ORIGIN_SZ1242 16.2596264 0.0067347 2414.322 <2e-16 ***
ORIGIN_SZ1243 16.7918470 0.0049648 3382.160 <2e-16 ***
ORIGIN_SZ1246 15.7107830 0.0091757 1712.212 <2e-16 ***
ORIGIN_SZ1256 16.7076479 0.0072600 2301.324 <2e-16 ***
ORIGIN_SZ1257 17.5036580 0.0051586 3393.078 <2e-16 ***
ORIGIN_SZ1258 15.6101943 0.0139987 1115.120 <2e-16 ***
ORIGIN_SZ1262 15.9945956 0.0082314 1943.108 <2e-16 ***
ORIGIN_SZ1263 16.4466199 0.0053877 3052.634 <2e-16 ***
ORIGIN_SZ1264 15.4448953 0.0119838 1288.813 <2e-16 ***
ORIGIN_SZ1265 14.9929060 0.0145128 1033.080 <2e-16 ***
ORIGIN_SZ1266 16.3866734 0.0076784 2134.129 <2e-16 ***
ORIGIN_SZ1267 14.3285194 0.0260074 550.940 <2e-16 ***
ORIGIN_SZ1272 12.0371394 0.1240498 97.035 <2e-16 ***
ORIGIN_SZ1273 15.9426915 0.0117344 1358.626 <2e-16 ***
ORIGIN_SZ1277 17.5890589 0.0041208 4268.348 <2e-16 ***
ORIGIN_SZ1278 15.2946016 0.0131499 1163.098 <2e-16 ***
ORIGIN_SZ1283 17.4945007 0.0040698 4298.635 <2e-16 ***
ORIGIN_SZ1284 16.8777706 0.0049069 3439.602 <2e-16 ***
ORIGIN_SZ1285 17.5251127 0.0036543 4795.766 <2e-16 ***
ORIGIN_SZ1286 15.8369160 0.0100159 1581.183 <2e-16 ***
ORIGIN_SZ1289 13.7782145 0.0459295 299.986 <2e-16 ***
ORIGIN_SZ1293 13.0113608 0.0737468 176.433 <2e-16 ***
ORIGIN_SZ1294 17.4064604 0.0060678 2868.676 <2e-16 ***
ORIGIN_SZ1295 14.9944876 0.0205344 730.215 <2e-16 ***
ORIGIN_SZ1298 16.7454217 0.0067344 2486.534 <2e-16 ***
ORIGIN_SZ1299 17.2446469 0.0060023 2873.015 <2e-16 ***
ORIGIN_SZ1304 17.4955296 0.0040278 4343.668 <2e-16 ***
ORIGIN_SZ1305 16.9029316 0.0043264 3906.936 <2e-16 ***
ORIGIN_SZ1307 13.5609493 0.0356334 380.569 <2e-16 ***
ORIGIN_SZ1308 16.5162432 0.0063386 2605.643 <2e-16 ***
ORIGIN_SZ1310 11.5742214 0.1715099 67.484 <2e-16 ***
ORIGIN_SZ1316 13.8244012 0.0348119 397.117 <2e-16 ***
ORIGIN_SZ1317 15.7474322 0.0112861 1395.295 <2e-16 ***
ORIGIN_SZ1318 15.0940998 0.0154474 977.129 <2e-16 ***
ORIGIN_SZ1319 17.7633978 0.0039585 4487.416 <2e-16 ***
ORIGIN_SZ1320 16.4695752 0.0090773 1814.365 <2e-16 ***
ORIGIN_SZ1325 15.2184657 0.0120975 1257.983 <2e-16 ***
ORIGIN_SZ1326 17.0641495 0.0042570 4008.513 <2e-16 ***
ORIGIN_SZ1327 16.8733697 0.0046577 3622.674 <2e-16 ***
ORIGIN_SZ1328 15.4864927 0.0094546 1637.988 <2e-16 ***
ORIGIN_SZ1329 15.8708370 0.0113883 1393.606 <2e-16 ***
ORIGIN_SZ1330 16.4796699 0.0082050 2008.482 <2e-16 ***
ORIGIN_SZ1331 11.3083747 0.2500074 45.232 <2e-16 ***
ORIGIN_SZ1333 15.6037380 0.0121101 1288.491 <2e-16 ***
ORIGIN_SZ1334 15.8191211 0.0111762 1415.428 <2e-16 ***
ORIGIN_SZ1335 15.2558955 0.0166733 914.988 <2e-16 ***
ORIGIN_SZ1336 12.8131543 0.1154915 110.945 <2e-16 ***
ORIGIN_SZ1337 13.1912647 0.0512077 257.603 <2e-16 ***
ORIGIN_SZ1338 11.9386486 0.0962448 124.045 <2e-16 ***
ORIGIN_SZ1339 17.8236757 0.0038645 4612.113 <2e-16 ***
ORIGIN_SZ1340 16.3337071 0.0087490 1866.915 <2e-16 ***
ORIGIN_SZ1341 12.2582282 0.2041346 60.050 <2e-16 ***
ORIGIN_SZ1346 16.5447929 0.0063590 2601.781 <2e-16 ***
ORIGIN_SZ1347 17.5692351 0.0036047 4873.932 <2e-16 ***
ORIGIN_SZ1348 16.0405892 0.0063728 2517.054 <2e-16 ***
ORIGIN_SZ1349 15.9020406 0.0080760 1969.049 <2e-16 ***
ORIGIN_SZ1350 16.1004640 0.0107249 1501.217 <2e-16 ***
ORIGIN_SZ1353 15.9407535 0.0083920 1899.523 <2e-16 ***
ORIGIN_SZ1354 15.3492808 0.0125293 1225.066 <2e-16 ***
ORIGIN_SZ1355 16.2244875 0.0083400 1945.384 <2e-16 ***
ORIGIN_SZ1357 15.2351270 0.0183971 828.127 <2e-16 ***
ORIGIN_SZ1358 16.4980584 0.0073796 2235.628 <2e-16 ***
ORIGIN_SZ1359 17.1096600 0.0052486 3259.870 <2e-16 ***
ORIGIN_SZ1360 17.0927991 0.0053985 3166.229 <2e-16 ***
ORIGIN_SZ1361 18.1006867 0.0041018 4412.841 <2e-16 ***
ORIGIN_SZ1362 14.2457026 0.0393676 361.863 <2e-16 ***
ORIGIN_SZ1368 15.4292205 0.0086270 1788.486 <2e-16 ***
ORIGIN_SZ1369 15.2691998 0.0088486 1725.614 <2e-16 ***
ORIGIN_SZ1370 16.4545771 0.0051220 3212.511 <2e-16 ***
ORIGIN_SZ1371 15.9230646 0.0098649 1614.107 <2e-16 ***
ORIGIN_SZ1372 15.2485152 0.0126429 1206.091 <2e-16 ***
ORIGIN_SZ1373 13.1869010 0.0463716 284.375 <2e-16 ***
ORIGIN_SZ1374 15.1959996 0.0115954 1310.522 <2e-16 ***
ORIGIN_SZ1375 16.7815509 0.0075210 2231.284 <2e-16 ***
ORIGIN_SZ1376 16.0037542 0.0123796 1292.756 <2e-16 ***
ORIGIN_SZ1379 14.1897722 0.0342978 413.722 <2e-16 ***
ORIGIN_SZ1380 18.0048608 0.0033257 5413.814 <2e-16 ***
ORIGIN_SZ1381 17.6434615 0.0038619 4568.560 <2e-16 ***
ORIGIN_SZ1382 17.1965436 0.0062162 2766.396 <2e-16 ***
ORIGIN_SZ1383 14.7154711 0.0242874 605.890 <2e-16 ***
ORIGIN_SZ1388 16.0655452 0.0065014 2471.090 <2e-16 ***
ORIGIN_SZ1389 15.1688392 0.0091397 1659.662 <2e-16 ***
ORIGIN_SZ1390 15.9685124 0.0067199 2376.316 <2e-16 ***
ORIGIN_SZ1391 16.0382000 0.0074429 2154.822 <2e-16 ***
ORIGIN_SZ1392 15.3864735 0.0166570 923.725 <2e-16 ***
ORIGIN_SZ1393 14.7127471 0.0143892 1022.488 <2e-16 ***
ORIGIN_SZ1394 16.1904566 0.0065032 2489.629 <2e-16 ***
ORIGIN_SZ1395 15.9919582 0.0073797 2167.025 <2e-16 ***
ORIGIN_SZ1396 17.0240613 0.0050949 3341.377 <2e-16 ***
ORIGIN_SZ1397 17.1459878 0.0052262 3280.796 <2e-16 ***
ORIGIN_SZ1398 16.1331575 0.0107340 1502.993 <2e-16 ***
ORIGIN_SZ1400 17.1249469 0.0064452 2656.996 <2e-16 ***
ORIGIN_SZ1401 17.3800816 0.0041129 4225.771 <2e-16 ***
ORIGIN_SZ1402 17.5525909 0.0043972 3991.794 <2e-16 ***
ORIGIN_SZ1404 17.0853340 0.0146201 1168.623 <2e-16 ***
ORIGIN_SZ1410 16.6785855 0.0045131 3695.583 <2e-16 ***
ORIGIN_SZ1411 15.6263657 0.0079136 1974.624 <2e-16 ***
ORIGIN_SZ1412 15.8632652 0.0063448 2500.206 <2e-16 ***
ORIGIN_SZ1413 16.6976156 0.0052192 3199.268 <2e-16 ***
ORIGIN_SZ1414 16.1024051 0.0063473 2536.885 <2e-16 ***
ORIGIN_SZ1415 15.6091099 0.0090728 1720.438 <2e-16 ***
ORIGIN_SZ1416 16.2522760 0.0069061 2353.319 <2e-16 ***
ORIGIN_SZ1417 16.2632298 0.0065312 2490.084 <2e-16 ***
ORIGIN_SZ1418 17.0801561 0.0048988 3486.597 <2e-16 ***
ORIGIN_SZ1419 16.5928118 0.0065297 2541.134 <2e-16 ***
ORIGIN_SZ1422 17.4605707 0.0049861 3501.870 <2e-16 ***
ORIGIN_SZ1423 18.4280640 0.0034278 5375.984 <2e-16 ***
ORIGIN_SZ1430 16.3350755 0.0059024 2767.514 <2e-16 ***
ORIGIN_SZ1431 16.3721791 0.0049058 3337.336 <2e-16 ***
ORIGIN_SZ1432 16.3387148 0.0049083 3328.819 <2e-16 ***
ORIGIN_SZ1433 14.9394369 0.0157525 948.385 <2e-16 ***
ORIGIN_SZ1434 16.5683874 0.0054128 3060.966 <2e-16 ***
ORIGIN_SZ1435 17.1048437 0.0042226 4050.812 <2e-16 ***
ORIGIN_SZ1436 13.9929475 0.0229622 609.392 <2e-16 ***
ORIGIN_SZ1437 17.2195577 0.0044845 3839.820 <2e-16 ***
ORIGIN_SZ1438 17.5808027 0.0035813 4909.032 <2e-16 ***
ORIGIN_SZ1439 18.1733052 0.0031872 5701.908 <2e-16 ***
ORIGIN_SZ1440 14.6116699 0.0197300 740.582 <2e-16 ***
ORIGIN_SZ1442 17.0108940 0.0066293 2566.023 <2e-16 ***
ORIGIN_SZ1443 18.0943720 0.0037392 4839.121 <2e-16 ***
ORIGIN_SZ1444 17.4814967 0.0072891 2398.306 <2e-16 ***
ORIGIN_SZ1452 15.4614632 0.0077451 1996.295 <2e-16 ***
ORIGIN_SZ1453 15.5259458 0.0073224 2120.329 <2e-16 ***
ORIGIN_SZ1454 14.4631469 0.0179865 804.111 <2e-16 ***
ORIGIN_SZ1455 15.8653438 0.0081813 1939.210 <2e-16 ***
ORIGIN_SZ1456 16.4918852 0.0058456 2821.268 <2e-16 ***
ORIGIN_SZ1457 17.2237601 0.0042012 4099.682 <2e-16 ***
ORIGIN_SZ1458 17.3448955 0.0038310 4527.478 <2e-16 ***
ORIGIN_SZ1459 17.0449732 0.0046657 3653.253 <2e-16 ***
ORIGIN_SZ1460 16.3146697 0.0063694 2561.414 <2e-16 ***
ORIGIN_SZ1461 15.0208448 0.0160718 934.610 <2e-16 ***
ORIGIN_SZ1464 18.2960245 0.0035693 5125.964 <2e-16 ***
ORIGIN_SZ1465 17.9785926 0.0046706 3849.316 <2e-16 ***
ORIGIN_SZ1472 14.0688441 0.0191908 733.103 <2e-16 ***
ORIGIN_SZ1473 15.0719399 0.0095306 1581.428 <2e-16 ***
ORIGIN_SZ1474 16.0512087 0.0053029 3026.856 <2e-16 ***
ORIGIN_SZ1475 16.9084780 0.0043658 3872.910 <2e-16 ***
ORIGIN_SZ1476 16.3932570 0.0061309 2673.860 <2e-16 ***
ORIGIN_SZ1477 17.7930860 0.0030712 5793.501 <2e-16 ***
ORIGIN_SZ1478 16.2338346 0.0063533 2555.175 <2e-16 ***
ORIGIN_SZ1479 16.4509057 0.0057552 2858.467 <2e-16 ***
ORIGIN_SZ1480 18.0855641 0.0030042 6020.184 <2e-16 ***
ORIGIN_SZ1481 15.8075135 0.0096989 1629.826 <2e-16 ***
ORIGIN_SZ1482 15.5926062 0.0128271 1215.599 <2e-16 ***
ORIGIN_SZ1485 17.6792838 0.0048014 3682.092 <2e-16 ***
ORIGIN_SZ1494 15.2214936 0.0117057 1300.346 <2e-16 ***
ORIGIN_SZ1495 15.4395023 0.0075636 2041.277 <2e-16 ***
ORIGIN_SZ1496 16.3696194 0.0045994 3559.072 <2e-16 ***
ORIGIN_SZ1497 16.7549650 0.0050679 3306.071 <2e-16 ***
ORIGIN_SZ1498 17.1950807 0.0041357 4157.695 <2e-16 ***
ORIGIN_SZ1499 17.4076917 0.0037363 4659.049 <2e-16 ***
ORIGIN_SZ1500 17.4049065 0.0052645 3306.087 <2e-16 ***
ORIGIN_SZ1501 17.4848938 0.0037850 4619.507 <2e-16 ***
ORIGIN_SZ1502 17.1169838 0.0046660 3668.446 <2e-16 ***
ORIGIN_SZ1506 12.5735422 0.0905583 138.845 <2e-16 ***
ORIGIN_SZ1515 14.1672009 0.0202836 698.455 <2e-16 ***
ORIGIN_SZ1516 15.8330233 0.0064281 2463.100 <2e-16 ***
ORIGIN_SZ1517 16.0938948 0.0065418 2460.174 <2e-16 ***
ORIGIN_SZ1518 16.1003491 0.0070855 2272.286 <2e-16 ***
ORIGIN_SZ1519 17.6551907 0.0046978 3758.184 <2e-16 ***
ORIGIN_SZ1520 16.8225393 0.0048966 3435.580 <2e-16 ***
ORIGIN_SZ1521 15.3515068 0.0106579 1440.382 <2e-16 ***
ORIGIN_SZ1522 17.7762583 0.0035541 5001.586 <2e-16 ***
ORIGIN_SZ1523 16.0024393 0.0143654 1113.960 <2e-16 ***
ORIGIN_SZ1524 16.2945877 0.0092138 1768.489 <2e-16 ***
ORIGIN_SZ1527 15.5410354 0.0158938 977.805 <2e-16 ***
ORIGIN_SZ1535 12.9484477 0.0864060 149.856 <2e-16 ***
ORIGIN_SZ1536 13.7932077 0.0301207 457.931 <2e-16 ***
ORIGIN_SZ1537 14.3729288 0.0164823 872.023 <2e-16 ***
ORIGIN_SZ1538 15.8437097 0.0060583 2615.205 <2e-16 ***
ORIGIN_SZ1539 16.4115475 0.0049743 3299.264 <2e-16 ***
ORIGIN_SZ1540 17.0241392 0.0043180 3942.594 <2e-16 ***
ORIGIN_SZ1541 18.2875415 0.0046338 3946.589 <2e-16 ***
ORIGIN_SZ1542 15.3179224 0.0141137 1085.326 <2e-16 ***
ORIGIN_SZ1543 15.9245255 0.0204814 777.513 <2e-16 ***
ORIGIN_SZ1544 17.0087699 0.0062637 2715.461 <2e-16 ***
ORIGIN_SZ1547 13.2309168 0.0581580 227.500 <2e-16 ***
ORIGIN_SZ1556 13.9355254 0.0593685 234.729 <2e-16 ***
ORIGIN_SZ1557 13.7147217 0.0323369 424.120 <2e-16 ***
ORIGIN_SZ1558 14.9315890 0.0171958 868.326 <2e-16 ***
ORIGIN_SZ1559 16.4534565 0.0046828 3513.595 <2e-16 ***
ORIGIN_SZ1560 17.3662532 0.0036383 4773.181 <2e-16 ***
ORIGIN_SZ1561 17.5821000 0.0045416 3871.326 <2e-16 ***
ORIGIN_SZ1562 14.5239363 0.0191005 760.395 <2e-16 ***
ORIGIN_SZ1563 16.1135612 0.0069741 2310.501 <2e-16 ***
ORIGIN_SZ1564 15.2471599 0.0127928 1191.858 <2e-16 ***
ORIGIN_SZ1565 15.2204748 0.0131286 1159.337 <2e-16 ***
ORIGIN_SZ1566 14.8802373 0.0184958 804.518 <2e-16 ***
ORIGIN_SZ1567 12.6350229 0.0873909 144.581 <2e-16 ***
ORIGIN_SZ1568 13.2552910 0.0600061 220.899 <2e-16 ***
ORIGIN_SZ1578 11.3893224 0.2500068 45.556 <2e-16 ***
ORIGIN_SZ1580 15.1181754 0.0150544 1004.233 <2e-16 ***
ORIGIN_SZ1581 13.9287014 0.0189239 736.038 <2e-16 ***
ORIGIN_SZ1582 17.1828251 0.0038736 4435.904 <2e-16 ***
ORIGIN_SZ1583 15.9559310 0.0190502 837.572 <2e-16 ***
ORIGIN_SZ1584 15.9152007 0.0097774 1627.751 <2e-16 ***
ORIGIN_SZ1585 16.1836552 0.0085921 1883.551 <2e-16 ***
ORIGIN_SZ1586 15.1381235 0.0129149 1172.140 <2e-16 ***
ORIGIN_SZ1589 13.6084264 0.0367626 370.170 <2e-16 ***
ORIGIN_SZ1590 13.1536416 0.0644477 204.098 <2e-16 ***
ORIGIN_SZ1600 17.0849679 0.0088149 1938.202 <2e-16 ***
ORIGIN_SZ1601 15.6416313 0.0071720 2180.944 <2e-16 ***
ORIGIN_SZ1602 16.6274057 0.0058315 2851.323 <2e-16 ***
ORIGIN_SZ1603 17.3898034 0.0039086 4449.105 <2e-16 ***
ORIGIN_SZ1604 15.9698584 0.0075003 2129.237 <2e-16 ***
ORIGIN_SZ1605 17.2588862 0.0041971 4112.115 <2e-16 ***
ORIGIN_SZ1606 16.8221434 0.0087138 1930.528 <2e-16 ***
ORIGIN_SZ1607 15.7364953 0.0091408 1721.560 <2e-16 ***
ORIGIN_SZ1608 17.4901493 0.0043933 3981.069 <2e-16 ***
ORIGIN_SZ1609 17.2267324 0.0053730 3206.181 <2e-16 ***
ORIGIN_SZ1610 13.6168052 0.0599002 227.325 <2e-16 ***
ORIGIN_SZ1622 15.5684512 0.0192894 807.098 <2e-16 ***
ORIGIN_SZ1623 16.9871070 0.0040423 4202.363 <2e-16 ***
ORIGIN_SZ1624 15.8705496 0.0077461 2048.834 <2e-16 ***
ORIGIN_SZ1625 17.3243503 0.0045069 3843.988 <2e-16 ***
ORIGIN_SZ1626 17.6887405 0.0033948 5210.465 <2e-16 ***
ORIGIN_SZ1627 16.1426808 0.0068827 2345.384 <2e-16 ***
ORIGIN_SZ1628 17.8056139 0.0034587 5148.111 <2e-16 ***
ORIGIN_SZ1629 16.6865603 0.0065231 2558.060 <2e-16 ***
ORIGIN_SZ1630 16.5504558 0.0073972 2237.402 <2e-16 ***
ORIGIN_SZ1631 13.1002262 0.0534129 245.263 <2e-16 ***
ORIGIN_SZ1642 14.6718453 0.0257506 569.768 <2e-16 ***
ORIGIN_SZ1643 16.9062576 0.0043059 3926.329 <2e-16 ***
ORIGIN_SZ1644 14.8400173 0.0156911 945.757 <2e-16 ***
ORIGIN_SZ1645 16.4385774 0.0058604 2805.029 <2e-16 ***
ORIGIN_SZ1646 16.4916018 0.0084350 1955.139 <2e-16 ***
ORIGIN_SZ1647 16.5411669 0.0056062 2950.530 <2e-16 ***
ORIGIN_SZ1648 16.9237665 0.0047351 3574.116 <2e-16 ***
ORIGIN_SZ1649 17.6381005 0.0037027 4763.587 <2e-16 ***
ORIGIN_SZ1650 17.3816756 0.0050380 3450.097 <2e-16 ***
ORIGIN_SZ1664 11.9741783 0.1280491 93.512 <2e-16 ***
ORIGIN_SZ1665 17.1106006 0.0039540 4327.424 <2e-16 ***
ORIGIN_SZ1666 15.9050881 0.0067349 2361.584 <2e-16 ***
ORIGIN_SZ1667 17.3001198 0.0095058 1819.946 <2e-16 ***
ORIGIN_SZ1668 17.1391739 0.0045634 3755.789 <2e-16 ***
ORIGIN_SZ1670 17.7983089 0.0034682 5131.816 <2e-16 ***
ORIGIN_SZ1671 18.4284779 0.0049182 3746.974 <2e-16 ***
ORIGIN_SZ1672 17.5547093 0.0055162 3182.368 <2e-16 ***
ORIGIN_SZ1684 16.1794371 0.0120047 1347.755 <2e-16 ***
ORIGIN_SZ1685 16.7640475 0.0051336 3265.562 <2e-16 ***
ORIGIN_SZ1686 16.6090413 0.0051174 3245.625 <2e-16 ***
ORIGIN_SZ1687 16.4413629 0.0071544 2298.089 <2e-16 ***
ORIGIN_SZ1688 15.7900998 0.0082098 1923.320 <2e-16 ***
ORIGIN_SZ1689 15.3978751 0.0118251 1302.136 <2e-16 ***
ORIGIN_SZ1690 16.8090055 0.0063374 2652.356 <2e-16 ***
ORIGIN_SZ1691 17.3775853 0.0043159 4026.382 <2e-16 ***
ORIGIN_SZ1692 16.6775678 0.0077830 2142.818 <2e-16 ***
ORIGIN_SZ1706 16.7836218 0.0059551 2818.360 <2e-16 ***
ORIGIN_SZ1707 16.6350135 0.0049298 3374.369 <2e-16 ***
ORIGIN_SZ1708 17.2508018 0.0040396 4270.439 <2e-16 ***
ORIGIN_SZ1709 16.2724509 0.0063955 2544.340 <2e-16 ***
ORIGIN_SZ1710 17.4010425 0.0041710 4171.893 <2e-16 ***
ORIGIN_SZ1711 17.1151176 0.0048203 3550.629 <2e-16 ***
ORIGIN_SZ1712 17.7523863 0.0034462 5151.290 <2e-16 ***
ORIGIN_SZ1713 15.2754975 0.0123435 1237.534 <2e-16 ***
ORIGIN_SZ1714 17.6417565 0.0045736 3857.298 <2e-16 ***
ORIGIN_SZ1727 16.9382535 0.0050519 3352.872 <2e-16 ***
ORIGIN_SZ1728 16.8349774 0.0046638 3609.674 <2e-16 ***
ORIGIN_SZ1729 16.4379953 0.0055562 2958.474 <2e-16 ***
ORIGIN_SZ1730 14.3091948 0.0213742 669.462 <2e-16 ***
ORIGIN_SZ1731 17.0784975 0.0048745 3503.676 <2e-16 ***
ORIGIN_SZ1732 17.4923882 0.0037372 4680.599 <2e-16 ***
ORIGIN_SZ1733 17.2449149 0.0044223 3899.507 <2e-16 ***
ORIGIN_SZ1734 17.4394205 0.0042726 4081.662 <2e-16 ***
ORIGIN_SZ1735 18.3435387 0.0056002 3275.501 <2e-16 ***
ORIGIN_SZ1748 15.7374058 0.0092310 1704.848 <2e-16 ***
ORIGIN_SZ1749 16.6191733 0.0049644 3347.683 <2e-16 ***
ORIGIN_SZ1750 15.8168547 0.0071297 2218.439 <2e-16 ***
ORIGIN_SZ1751 15.4217949 0.0107640 1432.718 <2e-16 ***
ORIGIN_SZ1753 17.5468833 0.0039098 4487.880 <2e-16 ***
ORIGIN_SZ1754 17.6972890 0.0034313 5157.543 <2e-16 ***
ORIGIN_SZ1755 17.2231622 0.0043561 3953.772 <2e-16 ***
ORIGIN_SZ1756 17.1344334 0.0051967 3297.195 <2e-16 ***
ORIGIN_SZ1757 14.4418847 0.0306002 471.953 <2e-16 ***
ORIGIN_SZ1769 16.5168150 0.0057811 2857.038 <2e-16 ***
ORIGIN_SZ1770 16.7371929 0.0079885 2095.172 <2e-16 ***
ORIGIN_SZ1771 15.4061259 0.0100259 1536.631 <2e-16 ***
ORIGIN_SZ1772 14.9387889 0.0230383 648.433 <2e-16 ***
ORIGIN_SZ1774 17.2245234 0.0042829 4021.700 <2e-16 ***
ORIGIN_SZ1775 16.8435253 0.0053570 3144.204 <2e-16 ***
ORIGIN_SZ1776 17.7618706 0.0035089 5061.945 <2e-16 ***
ORIGIN_SZ1777 17.8420282 0.0039340 4535.376 <2e-16 ***
ORIGIN_SZ1778 17.0280275 0.0107762 1580.153 <2e-16 ***
ORIGIN_SZ1790 17.1652660 0.0048467 3541.618 <2e-16 ***
ORIGIN_SZ1791 16.5715530 0.0061463 2696.200 <2e-16 ***
ORIGIN_SZ1792 16.6383030 0.0064223 2590.724 <2e-16 ***
ORIGIN_SZ1793 14.9107739 0.0130230 1144.957 <2e-16 ***
ORIGIN_SZ1794 15.1350113 0.0264138 572.996 <2e-16 ***
ORIGIN_SZ1795 13.9625026 0.0319919 436.439 <2e-16 ***
ORIGIN_SZ1796 17.5465320 0.0043069 4074.010 <2e-16 ***
ORIGIN_SZ1797 17.5419624 0.0039411 4450.994 <2e-16 ***
ORIGIN_SZ1798 17.7927375 0.0039366 4519.835 <2e-16 ***
ORIGIN_SZ1799 16.5179098 0.0073993 2232.347 <2e-16 ***
ORIGIN_SZ1800 15.6593138 0.0240942 649.921 <2e-16 ***
ORIGIN_SZ1811 16.3197425 0.0070289 2321.792 <2e-16 ***
ORIGIN_SZ1812 17.3908591 0.0036798 4726.064 <2e-16 ***
ORIGIN_SZ1813 17.2743168 0.0039564 4366.153 <2e-16 ***
ORIGIN_SZ1817 17.5077879 0.0048037 3644.661 <2e-16 ***
ORIGIN_SZ1818 17.3783604 0.0043780 3969.483 <2e-16 ***
ORIGIN_SZ1819 17.6555705 0.0037319 4730.967 <2e-16 ***
ORIGIN_SZ1820 14.6650258 0.0335896 436.595 <2e-16 ***
ORIGIN_SZ1832 17.0233126 0.0051661 3295.168 <2e-16 ***
ORIGIN_SZ1833 16.4774393 0.0058075 2837.289 <2e-16 ***
ORIGIN_SZ1834 16.9567665 0.0045705 3710.035 <2e-16 ***
ORIGIN_SZ1835 16.2500715 0.0072461 2242.591 <2e-16 ***
ORIGIN_SZ1837 13.4702642 0.0605534 222.453 <2e-16 ***
ORIGIN_SZ1839 16.6922489 0.0070682 2361.591 <2e-16 ***
ORIGIN_SZ1840 18.6247050 0.0029654 6280.725 <2e-16 ***
ORIGIN_SZ1841 14.2830286 0.0350583 407.407 <2e-16 ***
ORIGIN_SZ1842 17.6316811 0.0100041 1762.451 <2e-16 ***
ORIGIN_SZ1853 16.8645635 0.0049093 3435.219 <2e-16 ***
ORIGIN_SZ1854 17.1336205 0.0046436 3689.716 <2e-16 ***
ORIGIN_SZ1855 17.4326684 0.0041866 4163.967 <2e-16 ***
ORIGIN_SZ1858 15.1207205 0.0248931 607.427 <2e-16 ***
ORIGIN_SZ1860 18.0466784 0.0080342 2246.236 <2e-16 ***
ORIGIN_SZ1861 17.6109889 0.0045070 3907.456 <2e-16 ***
ORIGIN_SZ1874 17.1205068 0.0058289 2937.193 <2e-16 ***
ORIGIN_SZ1875 15.5038243 0.0124087 1249.431 <2e-16 ***
ORIGIN_SZ1876 17.5652661 0.0096363 1822.831 <2e-16 ***
ORIGIN_SZ1877 17.0749434 0.0047545 3591.352 <2e-16 ***
ORIGIN_SZ1880 13.7901276 0.0464638 296.793 <2e-16 ***
ORIGIN_SZ1882 17.4611984 0.0048606 3592.393 <2e-16 ***
ORIGIN_SZ1883 17.5122889 0.0082642 2119.063 <2e-16 ***
ORIGIN_SZ1895 17.1175452 0.0047201 3626.505 <2e-16 ***
ORIGIN_SZ1896 15.6445239 0.0093313 1676.562 <2e-16 ***
ORIGIN_SZ1897 16.4281615 0.0084632 1941.126 <2e-16 ***
ORIGIN_SZ1898 11.9659945 0.1231079 97.199 <2e-16 ***
ORIGIN_SZ1901 13.5176969 0.0710961 190.133 <2e-16 ***
ORIGIN_SZ1903 16.8906898 0.0083617 2019.999 <2e-16 ***
ORIGIN_SZ1917 15.8732862 0.0089910 1765.470 <2e-16 ***
ORIGIN_SZ1918 17.7244187 0.0055324 3203.776 <2e-16 ***
ORIGIN_SZ1919 17.0563595 0.0050799 3357.641 <2e-16 ***
ORIGIN_SZ1922 14.8707772 0.0273452 543.817 <2e-16 ***
ORIGIN_SZ1924 16.8453980 0.0089574 1880.617 <2e-16 ***
ORIGIN_SZ1937 16.5511451 0.0066571 2486.250 <2e-16 ***
ORIGIN_SZ1938 17.3455486 0.0043828 3957.627 <2e-16 ***
ORIGIN_SZ1939 18.0078675 0.0040139 4486.418 <2e-16 ***
ORIGIN_SZ1942 14.0925286 0.0403380 349.361 <2e-16 ***
ORIGIN_SZ1959 16.2200261 0.0082820 1958.465 <2e-16 ***
ORIGIN_SZ1960 18.0723157 0.0030375 5949.683 <2e-16 ***
ORIGIN_SZ1961 16.8535335 0.0067221 2507.201 <2e-16 ***
ORIGIN_SZ1962 17.7409672 0.0043092 4116.982 <2e-16 ***
ORIGIN_SZ1964 13.2553789 0.0824997 160.672 <2e-16 ***
ORIGIN_SZ1979 16.4881568 0.0076982 2141.828 <2e-16 ***
ORIGIN_SZ1980 14.9708840 0.0136317 1098.240 <2e-16 ***
ORIGIN_SZ1981 17.4290066 0.0042820 4070.277 <2e-16 ***
ORIGIN_SZ1982 16.1847782 0.0106877 1514.338 <2e-16 ***
ORIGIN_SZ1983 17.7131611 0.0043282 4092.456 <2e-16 ***
ORIGIN_SZ1984 16.3401353 0.0074844 2183.220 <2e-16 ***
ORIGIN_SZ1985 16.9405376 0.0061212 2767.505 <2e-16 ***
ORIGIN_SZ2001 16.7667188 0.0057133 2934.668 <2e-16 ***
ORIGIN_SZ2002 17.4727864 0.0038369 4553.877 <2e-16 ***
ORIGIN_SZ2003 17.0717267 0.0049328 3460.869 <2e-16 ***
ORIGIN_SZ2004 17.8259362 0.0041105 4336.711 <2e-16 ***
ORIGIN_SZ2005 17.5889461 0.0041274 4261.480 <2e-16 ***
ORIGIN_SZ2006 16.1202663 0.0090163 1787.904 <2e-16 ***
ORIGIN_SZ2007 15.4587971 0.0158466 975.526 <2e-16 ***
ORIGIN_SZ2022 17.4262785 0.0056351 3092.458 <2e-16 ***
ORIGIN_SZ2023 17.6779653 0.0037277 4742.336 <2e-16 ***
ORIGIN_SZ2024 17.0342910 0.0047127 3614.563 <2e-16 ***
ORIGIN_SZ2025 17.2883254 0.0045580 3792.953 <2e-16 ***
ORIGIN_SZ2026 15.7631450 0.0112095 1406.230 <2e-16 ***
ORIGIN_SZ2027 17.7824851 0.0039759 4472.618 <2e-16 ***
ORIGIN_SZ2043 16.5064888 0.0074455 2216.968 <2e-16 ***
ORIGIN_SZ2044 17.4164845 0.0042103 4136.644 <2e-16 ***
ORIGIN_SZ2045 13.5484660 0.0644455 210.231 <2e-16 ***
ORIGIN_SZ2046 17.4220788 0.0039175 4447.205 <2e-16 ***
ORIGIN_SZ2047 17.3312549 0.0051236 3382.660 <2e-16 ***
ORIGIN_SZ2048 17.4222120 0.0045355 3841.271 <2e-16 ***
ORIGIN_SZ2049 16.2697515 0.0128016 1270.915 <2e-16 ***
ORIGIN_SZ2064 17.3422374 0.0047956 3616.317 <2e-16 ***
ORIGIN_SZ2065 15.9824887 0.0081983 1949.491 <2e-16 ***
ORIGIN_SZ2066 15.8922658 0.0228202 696.414 <2e-16 ***
ORIGIN_SZ2067 18.3077411 0.0028639 6392.632 <2e-16 ***
ORIGIN_SZ2068 17.5972042 0.0066806 2634.056 <2e-16 ***
ORIGIN_SZ2069 17.2219369 0.0053081 3244.459 <2e-16 ***
ORIGIN_SZ2085 16.0881664 0.0091778 1752.950 <2e-16 ***
ORIGIN_SZ2086 17.6215580 0.0039714 4437.060 <2e-16 ***
ORIGIN_SZ2087 16.3950722 0.0068826 2382.112 <2e-16 ***
ORIGIN_SZ2088 17.0908524 0.0045294 3773.308 <2e-16 ***
ORIGIN_SZ2089 16.8675590 0.0062539 2697.132 <2e-16 ***
ORIGIN_SZ2090 17.8315057 0.0034963 5100.146 <2e-16 ***
ORIGIN_SZ2091 13.6955859 0.0631468 216.885 <2e-16 ***
ORIGIN_SZ2105 14.1125812 0.0985581 143.190 <2e-16 ***
ORIGIN_SZ2106 14.6414654 0.0184780 792.373 <2e-16 ***
ORIGIN_SZ2107 15.8314290 0.0086402 1832.308 <2e-16 ***
ORIGIN_SZ2108 17.0084994 0.0053738 3165.070 <2e-16 ***
ORIGIN_SZ2109 17.2431047 0.0044610 3865.294 <2e-16 ***
ORIGIN_SZ2110 16.7916912 0.0071236 2357.179 <2e-16 ***
ORIGIN_SZ2111 14.6874255 0.0384227 382.259 <2e-16 ***
ORIGIN_SZ2128 15.6840940 0.0134195 1168.751 <2e-16 ***
ORIGIN_SZ2129 15.0891198 0.0146034 1033.258 <2e-16 ***
ORIGIN_SZ2130 17.4880134 0.0038775 4510.177 <2e-16 ***
ORIGIN_SZ2131 17.7697711 0.0043766 4060.181 <2e-16 ***
ORIGIN_SZ2132 16.9092159 0.0058602 2885.430 <2e-16 ***
ORIGIN_SZ2148 16.3905292 0.0109595 1495.556 <2e-16 ***
ORIGIN_SZ2149 15.2995992 0.0145826 1049.169 <2e-16 ***
ORIGIN_SZ2150 17.5091513 0.0044395 3943.917 <2e-16 ***
ORIGIN_SZ2151 17.7314741 0.0035096 5052.291 <2e-16 ***
ORIGIN_SZ2152 17.9129001 0.0037585 4765.994 <2e-16 ***
ORIGIN_SZ2153 17.3432375 0.0053764 3225.829 <2e-16 ***
ORIGIN_SZ2171 16.4568918 0.0068831 2390.905 <2e-16 ***
ORIGIN_SZ2172 16.6154908 0.0075332 2205.632 <2e-16 ***
ORIGIN_SZ2173 16.9974571 0.0050314 3378.252 <2e-16 ***
ORIGIN_SZ2174 17.2830673 0.0051222 3374.153 <2e-16 ***
ORIGIN_SZ2191 16.2413756 0.0097908 1658.837 <2e-16 ***
ORIGIN_SZ2192 15.8054056 0.0106206 1488.190 <2e-16 ***
ORIGIN_SZ2193 16.8469406 0.0058486 2880.520 <2e-16 ***
ORIGIN_SZ2194 17.0847071 0.0050136 3407.670 <2e-16 ***
ORIGIN_SZ2195 16.5157113 0.0199754 826.803 <2e-16 ***
ORIGIN_SZ2212 14.0634543 0.0825044 170.457 <2e-16 ***
ORIGIN_SZ2213 14.0099431 0.0361596 387.447 <2e-16 ***
ORIGIN_SZ2214 14.8668683 0.0261041 569.523 <2e-16 ***
ORIGIN_SZ2215 16.7813055 0.0064734 2592.339 <2e-16 ***
ORIGIN_SZ2216 15.8040514 0.0106287 1486.925 <2e-16 ***
ORIGIN_SZ2233 14.1499603 0.0438945 322.363 <2e-16 ***
ORIGIN_SZ2234 16.3120143 0.0191588 851.412 <2e-16 ***
ORIGIN_SZ2235 15.8017816 0.0123113 1283.516 <2e-16 ***
ORIGIN_SZ2236 15.6094875 0.0125479 1243.990 <2e-16 ***
ORIGIN_SZ2237 13.3065457 0.0559328 237.902 <2e-16 ***
ORIGIN_SZ2256 14.2009275 0.0418181 339.588 <2e-16 ***
ORIGIN_SZ2257 15.2607057 0.0188763 808.459 <2e-16 ***
ORIGIN_SZ2258 14.8781858 0.0154325 964.084 <2e-16 ***
ORIGIN_SZ2259 14.5573336 0.0330605 440.324 <2e-16 ***
ORIGIN_SZ2277 15.2450083 0.0366627 415.818 <2e-16 ***
ORIGIN_SZ2278 16.2711543 0.0113003 1439.893 <2e-16 ***
ORIGIN_SZ2279 14.6778939 0.0195616 750.342 <2e-16 ***
ORIGIN_SZ2280 12.6841698 0.1031584 122.958 <2e-16 ***
ORIGIN_SZ2297 17.2675039 0.0088944 1941.382 <2e-16 ***
ORIGIN_SZ2300 13.1130468 0.0674481 194.417 <2e-16 ***
ORIGIN_SZ2301 14.8744683 0.0182382 815.568 <2e-16 ***
ORIGIN_SZ2318 15.6275373 0.0179566 870.293 <2e-16 ***
ORIGIN_SZ2319 16.6558082 0.0099014 1682.170 <2e-16 ***
ORIGIN_SZ2322 16.1067660 0.0112754 1428.491 <2e-16 ***
ORIGIN_SZ2337 17.2852700 0.0146577 1179.264 <2e-16 ***
ORIGIN_SZ2341 16.9876357 0.0088480 1919.947 <2e-16 ***
ORIGIN_SZ2343 15.6464859 0.0135032 1158.721 <2e-16 ***
ORIGIN_SZ2361 16.6635165 0.0112716 1478.363 <2e-16 ***
ORIGIN_SZ2364 12.9334479 0.0733497 176.326 <2e-16 ***
ORIGIN_SZ2379 17.1237880 0.0162800 1051.832 <2e-16 ***
ORIGIN_SZ2384 16.2321989 0.0143144 1133.975 <2e-16 ***
ORIGIN_SZ2405 15.9593360 0.0143219 1114.335 <2e-16 ***
ORIGIN_SZ2406 14.5887345 0.0323372 451.144 <2e-16 ***
ORIGIN_SZ2426 16.3970030 0.0256370 639.583 <2e-16 ***
ORIGIN_SZ2427 16.9094915 0.0104303 1621.196 <2e-16 ***
ORIGIN_SZ2505 16.6423985 0.0384692 432.616 <2e-16 ***
log(BUSINESS_num) 0.1145699 0.0001897 604.087 <2e-16 ***
log(FB_num) 0.1319546 0.0002589 509.608 <2e-16 ***
log(schools_num) 0.1776087 0.0006586 269.689 <2e-16 ***
log(hdb_num) 0.1227611 0.0001474 832.701 <2e-16 ***
log(entertn_num) 0.2532727 0.0007717 328.190 <2e-16 ***
log(dist) -1.4416487 0.0002609 -5526.339 <2e-16 ***
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
(Dispersion parameter for poisson family taken to be 1)
Null deviance: 349181331 on 64962 degrees of freedom
Residual deviance: 42866101 on 64139 degrees of freedom
AIC: 43226117
Number of Fisher Scoring iterations: 7
9.4.3 Destin Constrained Model
The code chunk used to calibrate to model is shown below is the destination:
decSIM <- glm(formula = MORNING_PEAK ~
DESTIN_SZ +
log(BUSINESS_num) +
log(FB_num) +
log(schools_num) +
log(hdb_num) +
log(entertn_num)+
log(dist)-1,
family = poisson(link = "log"),
data = inter_zonal_flow,
na.action = na.exclude)the calculated R-squared is 0.3053515, indicating that the model accounts for approximately 30.54% of the variability in the observed MORNING_PEAK.
Code
CalcRSquared(decSIM$data$MORNING_PEAK, decSIM$fitted.values)[1] 0.3053515
Code
decSIM$coefficients[820:825]log(BUSINESS_num) log(FB_num) log(schools_num) log(hdb_num)
NA NA NA NA
log(entertn_num) log(dist)
NA -1.461883
Code
options(max.print = 10000)
summary(decSIM)
Call:
glm(formula = MORNING_PEAK ~ DESTIN_SZ + log(BUSINESS_num) +
log(FB_num) + log(schools_num) + log(hdb_num) + log(entertn_num) +
log(dist) - 1, family = poisson(link = "log"), data = inter_zonal_flow,
na.action = na.exclude)
Coefficients: (5 not defined because of singularities)
Estimate Std. Error z value Pr(>|z|)
DESTIN_SZ23 16.6350037 0.0504877 329.49 <2e-16 ***
DESTIN_SZ44 17.7648906 0.0226652 783.79 <2e-16 ***
DESTIN_SZ46 16.8708169 0.0191462 881.16 <2e-16 ***
DESTIN_SZ66 15.9389708 0.0461679 345.24 <2e-16 ***
DESTIN_SZ67 16.7983647 0.0137218 1224.21 <2e-16 ***
DESTIN_SZ68 16.8163886 0.0193076 870.97 <2e-16 ***
DESTIN_SZ86 16.8940255 0.0344631 490.21 <2e-16 ***
DESTIN_SZ87 13.9580875 0.0836436 166.88 <2e-16 ***
DESTIN_SZ88 16.2107274 0.0171040 947.77 <2e-16 ***
DESTIN_SZ89 16.6972232 0.0199974 834.97 <2e-16 ***
DESTIN_SZ90 12.1872374 0.7071097 17.23 <2e-16 ***
DESTIN_SZ109 15.9090781 0.0240970 660.21 <2e-16 ***
DESTIN_SZ110 13.0822409 0.1005198 130.15 <2e-16 ***
DESTIN_SZ111 16.7511015 0.0118668 1411.60 <2e-16 ***
DESTIN_SZ112 14.9617633 0.0323917 461.90 <2e-16 ***
DESTIN_SZ128 16.6176074 0.0231683 717.25 <2e-16 ***
DESTIN_SZ129 13.5696912 0.1324650 102.44 <2e-16 ***
DESTIN_SZ130 15.9680273 0.0219343 728.00 <2e-16 ***
DESTIN_SZ131 15.4024371 0.0217725 707.43 <2e-16 ***
DESTIN_SZ132 16.6387249 0.0146895 1132.69 <2e-16 ***
DESTIN_SZ133 16.4221307 0.0123079 1334.28 <2e-16 ***
DESTIN_SZ134 16.6149515 0.0115366 1440.19 <2e-16 ***
DESTIN_SZ150 16.0520048 0.0253139 634.12 <2e-16 ***
DESTIN_SZ151 15.7327201 0.0222516 707.04 <2e-16 ***
DESTIN_SZ152 17.1756622 0.0142121 1208.53 <2e-16 ***
DESTIN_SZ153 16.9664862 0.0129691 1308.23 <2e-16 ***
DESTIN_SZ154 15.1305365 0.0271986 556.30 <2e-16 ***
DESTIN_SZ155 15.8372324 0.0184088 860.31 <2e-16 ***
DESTIN_SZ156 16.3358762 0.0196674 830.61 <2e-16 ***
DESTIN_SZ172 14.5845392 0.0430694 338.63 <2e-16 ***
DESTIN_SZ174 16.4021989 0.0143354 1144.18 <2e-16 ***
DESTIN_SZ175 16.5471268 0.0104815 1578.70 <2e-16 ***
DESTIN_SZ176 14.9585939 0.0264885 564.72 <2e-16 ***
DESTIN_SZ195 15.7298146 0.0295692 531.97 <2e-16 ***
DESTIN_SZ196 16.6844551 0.0100408 1661.67 <2e-16 ***
DESTIN_SZ197 13.4886576 0.0751863 179.40 <2e-16 ***
DESTIN_SZ215 16.5514188 0.0290274 570.20 <2e-16 ***
DESTIN_SZ216 15.8626889 0.0152046 1043.28 <2e-16 ***
DESTIN_SZ217 17.2783169 0.0091383 1890.76 <2e-16 ***
DESTIN_SZ237 16.1171510 0.0305242 528.01 <2e-16 ***
DESTIN_SZ238 16.6697988 0.0147529 1129.93 <2e-16 ***
DESTIN_SZ239 15.6539571 0.0301673 518.90 <2e-16 ***
DESTIN_SZ257 16.4832448 0.0154009 1070.28 <2e-16 ***
DESTIN_SZ258 15.9682169 0.0190669 837.48 <2e-16 ***
DESTIN_SZ259 17.1908916 0.0118314 1452.99 <2e-16 ***
DESTIN_SZ278 16.7794448 0.0137832 1217.38 <2e-16 ***
DESTIN_SZ279 16.4807373 0.0130646 1261.48 <2e-16 ***
DESTIN_SZ280 16.8293849 0.0122569 1373.06 <2e-16 ***
DESTIN_SZ298 13.6812668 0.1291111 105.97 <2e-16 ***
DESTIN_SZ299 16.6761994 0.0157800 1056.80 <2e-16 ***
DESTIN_SZ300 15.8888699 0.0167336 949.52 <2e-16 ***
DESTIN_SZ320 17.1120970 0.0137400 1245.42 <2e-16 ***
DESTIN_SZ321 15.8931575 0.0233389 680.97 <2e-16 ***
DESTIN_SZ322 17.9990148 0.0114968 1565.56 <2e-16 ***
DESTIN_SZ340 18.0084556 0.0105046 1714.34 <2e-16 ***
DESTIN_SZ341 16.8407452 0.0119767 1406.13 <2e-16 ***
DESTIN_SZ342 17.8472835 0.0102467 1741.75 <2e-16 ***
DESTIN_SZ363 17.0920934 0.0130186 1312.90 <2e-16 ***
DESTIN_SZ364 18.1472210 0.0076257 2379.75 <2e-16 ***
DESTIN_SZ383 17.1539570 0.0087594 1958.34 <2e-16 ***
DESTIN_SZ384 18.2281528 0.0082303 2214.77 <2e-16 ***
DESTIN_SZ385 17.2050842 0.0145717 1180.72 <2e-16 ***
DESTIN_SZ404 17.8057962 0.0123818 1438.07 <2e-16 ***
DESTIN_SZ405 17.2056191 0.0102264 1682.48 <2e-16 ***
DESTIN_SZ406 17.5162432 0.0051447 3404.71 <2e-16 ***
DESTIN_SZ407 18.8769281 0.0076649 2462.76 <2e-16 ***
DESTIN_SZ408 19.3525187 0.0043373 4461.89 <2e-16 ***
DESTIN_SZ425 15.7913467 0.0243422 648.72 <2e-16 ***
DESTIN_SZ426 17.0046451 0.0100827 1686.52 <2e-16 ***
DESTIN_SZ427 15.0595385 0.0227629 661.58 <2e-16 ***
DESTIN_SZ428 17.4326472 0.0096489 1806.69 <2e-16 ***
DESTIN_SZ429 16.7217277 0.0212361 787.42 <2e-16 ***
DESTIN_SZ446 17.1256672 0.0223256 767.09 <2e-16 ***
DESTIN_SZ447 16.0327727 0.0168113 953.69 <2e-16 ***
DESTIN_SZ448 17.0192011 0.0114702 1483.78 <2e-16 ***
DESTIN_SZ449 17.7883748 0.0069594 2556.02 <2e-16 ***
DESTIN_SZ450 16.9471362 0.0110126 1538.89 <2e-16 ***
DESTIN_SZ468 17.2399857 0.0105525 1633.73 <2e-16 ***
DESTIN_SZ469 17.1924367 0.0083100 2068.88 <2e-16 ***
DESTIN_SZ470 17.5791594 0.0065198 2696.29 <2e-16 ***
DESTIN_SZ471 16.5772156 0.0152953 1083.81 <2e-16 ***
DESTIN_SZ488 16.1865316 0.0217661 743.66 <2e-16 ***
DESTIN_SZ489 14.7212952 0.0457261 321.94 <2e-16 ***
DESTIN_SZ490 17.3463466 0.0084917 2042.74 <2e-16 ***
DESTIN_SZ491 15.9770695 0.0148026 1079.34 <2e-16 ***
DESTIN_SZ493 14.3167122 0.0477080 300.09 <2e-16 ***
DESTIN_SZ494 16.2070130 0.0216343 749.14 <2e-16 ***
DESTIN_SZ509 15.9972914 0.0147449 1084.94 <2e-16 ***
DESTIN_SZ510 17.3356293 0.0096472 1796.97 <2e-16 ***
DESTIN_SZ511 17.2671211 0.0066432 2599.22 <2e-16 ***
DESTIN_SZ512 17.3427742 0.0063618 2726.09 <2e-16 ***
DESTIN_SZ513 17.7464204 0.0072148 2459.71 <2e-16 ***
DESTIN_SZ514 16.9224595 0.0116174 1456.64 <2e-16 ***
DESTIN_SZ515 15.6696805 0.0296989 527.62 <2e-16 ***
DESTIN_SZ530 15.3908524 0.0283953 542.02 <2e-16 ***
DESTIN_SZ531 17.9922198 0.0058826 3058.57 <2e-16 ***
DESTIN_SZ532 16.9617561 0.0087074 1947.97 <2e-16 ***
DESTIN_SZ533 18.9405165 0.0031746 5966.21 <2e-16 ***
DESTIN_SZ534 17.6841769 0.0063900 2767.49 <2e-16 ***
DESTIN_SZ536 15.8542723 0.0175085 905.52 <2e-16 ***
DESTIN_SZ537 15.3354540 0.0333316 460.09 <2e-16 ***
DESTIN_SZ538 15.0159050 0.0426815 351.81 <2e-16 ***
DESTIN_SZ539 14.0001197 0.2500093 56.00 <2e-16 ***
DESTIN_SZ551 16.3176984 0.0173472 940.65 <2e-16 ***
DESTIN_SZ552 18.6362388 0.0103292 1804.23 <2e-16 ***
DESTIN_SZ553 16.9884919 0.0084946 1999.93 <2e-16 ***
DESTIN_SZ554 17.3254481 0.0066826 2592.61 <2e-16 ***
DESTIN_SZ555 17.6793305 0.0073795 2395.72 <2e-16 ***
DESTIN_SZ559 15.6614521 0.0529668 295.68 <2e-16 ***
DESTIN_SZ560 16.9584128 0.0161495 1050.09 <2e-16 ***
DESTIN_SZ561 15.6756427 0.0641880 244.21 <2e-16 ***
DESTIN_SZ572 16.5303733 0.0342533 482.59 <2e-16 ***
DESTIN_SZ573 17.2474249 0.0099580 1732.02 <2e-16 ***
DESTIN_SZ574 17.1383588 0.0154267 1110.95 <2e-16 ***
DESTIN_SZ575 19.4038343 0.0025184 7704.92 <2e-16 ***
DESTIN_SZ576 17.4550171 0.0062076 2811.90 <2e-16 ***
DESTIN_SZ578 13.2867423 0.0976082 136.12 <2e-16 ***
DESTIN_SZ582 14.8272003 0.0612279 242.16 <2e-16 ***
DESTIN_SZ583 13.6634209 0.1825843 74.83 <2e-16 ***
DESTIN_SZ584 16.6164471 0.0343869 483.22 <2e-16 ***
DESTIN_SZ593 15.7980949 0.0249032 634.38 <2e-16 ***
DESTIN_SZ594 16.6145107 0.0133112 1248.16 <2e-16 ***
DESTIN_SZ595 17.6899936 0.0058536 3022.09 <2e-16 ***
DESTIN_SZ596 17.6715881 0.0050997 3465.24 <2e-16 ***
DESTIN_SZ597 17.3190976 0.0149428 1159.03 <2e-16 ***
DESTIN_SZ603 14.7314038 0.0511291 288.12 <2e-16 ***
DESTIN_SZ604 16.9938545 0.0492599 344.98 <2e-16 ***
DESTIN_SZ615 15.9197596 0.0144271 1103.46 <2e-16 ***
DESTIN_SZ616 17.4648127 0.0086819 2011.64 <2e-16 ***
DESTIN_SZ617 16.5733942 0.0090141 1838.61 <2e-16 ***
DESTIN_SZ618 17.4535085 0.0062524 2791.51 <2e-16 ***
DESTIN_SZ620 17.1285449 0.0106657 1605.95 <2e-16 ***
DESTIN_SZ637 16.9761427 0.0107006 1586.47 <2e-16 ***
DESTIN_SZ638 17.4409559 0.0057167 3050.87 <2e-16 ***
DESTIN_SZ657 17.5626225 0.0070019 2508.27 <2e-16 ***
DESTIN_SZ658 17.3208974 0.0060701 2853.49 <2e-16 ***
DESTIN_SZ659 17.6384628 0.0057368 3074.62 <2e-16 ***
DESTIN_SZ660 18.2538855 0.0040861 4467.32 <2e-16 ***
DESTIN_SZ662 16.9808432 0.0115807 1466.31 <2e-16 ***
DESTIN_SZ677 17.7386129 0.0092539 1916.89 <2e-16 ***
DESTIN_SZ678 16.1434356 0.0137714 1172.24 <2e-16 ***
DESTIN_SZ679 17.6987142 0.0049770 3556.13 <2e-16 ***
DESTIN_SZ680 19.5108225 0.0026778 7286.16 <2e-16 ***
DESTIN_SZ681 16.2941696 0.0175510 928.39 <2e-16 ***
DESTIN_SZ699 17.0802411 0.0089024 1918.61 <2e-16 ***
DESTIN_SZ700 17.3754689 0.0068593 2533.14 <2e-16 ***
DESTIN_SZ701 15.3904622 0.0191672 802.96 <2e-16 ***
DESTIN_SZ702 17.8741006 0.0046971 3805.34 <2e-16 ***
DESTIN_SZ704 17.3239918 0.0106139 1632.19 <2e-16 ***
DESTIN_SZ722 17.1982826 0.0087045 1975.80 <2e-16 ***
DESTIN_SZ725 15.6113259 0.0259626 601.30 <2e-16 ***
DESTIN_SZ741 17.6248992 0.0071347 2470.30 <2e-16 ***
DESTIN_SZ743 15.0699990 0.0203173 741.73 <2e-16 ***
DESTIN_SZ744 17.9352949 0.0048603 3690.20 <2e-16 ***
DESTIN_SZ761 17.7189488 0.0082410 2150.09 <2e-16 ***
DESTIN_SZ762 16.0792596 0.0131711 1220.80 <2e-16 ***
DESTIN_SZ763 15.1629935 0.0196043 773.45 <2e-16 ***
DESTIN_SZ764 18.2237883 0.0037249 4892.36 <2e-16 ***
DESTIN_SZ765 17.3932101 0.0095007 1830.74 <2e-16 ***
DESTIN_SZ767 17.6473791 0.0066086 2670.35 <2e-16 ***
DESTIN_SZ772 15.2976079 0.0378704 403.95 <2e-16 ***
DESTIN_SZ784 15.3332579 0.0209105 733.28 <2e-16 ***
DESTIN_SZ785 17.1377007 0.0055825 3069.88 <2e-16 ***
DESTIN_SZ786 17.6152552 0.0050562 3483.89 <2e-16 ***
DESTIN_SZ787 16.9017027 0.0106515 1586.79 <2e-16 ***
DESTIN_SZ788 16.3233043 0.0141549 1153.19 <2e-16 ***
DESTIN_SZ789 16.3678937 0.0168129 973.53 <2e-16 ***
DESTIN_SZ803 16.7814124 0.0138660 1210.26 <2e-16 ***
DESTIN_SZ804 17.3973577 0.0062360 2789.81 <2e-16 ***
DESTIN_SZ805 18.5906637 0.0031242 5950.59 <2e-16 ***
DESTIN_SZ806 17.3213007 0.0057078 3034.65 <2e-16 ***
DESTIN_SZ807 17.6772834 0.0067598 2615.05 <2e-16 ***
DESTIN_SZ808 15.9582828 0.0174760 913.15 <2e-16 ***
DESTIN_SZ809 17.6549220 0.0051956 3398.05 <2e-16 ***
DESTIN_SZ810 17.5998611 0.0079285 2219.82 <2e-16 ***
DESTIN_SZ814 16.0785490 0.0193294 831.82 <2e-16 ***
DESTIN_SZ819 21.0709878 0.0134508 1566.52 <2e-16 ***
DESTIN_SZ824 16.7187278 0.0133783 1249.69 <2e-16 ***
DESTIN_SZ826 17.1553849 0.0060271 2846.39 <2e-16 ***
DESTIN_SZ827 17.1267880 0.0063073 2715.39 <2e-16 ***
DESTIN_SZ828 17.6009511 0.0048910 3598.63 <2e-16 ***
DESTIN_SZ829 17.1555531 0.0076612 2239.27 <2e-16 ***
DESTIN_SZ830 16.3472557 0.0125195 1305.75 <2e-16 ***
DESTIN_SZ831 19.2155043 0.0027893 6889.01 <2e-16 ***
DESTIN_SZ832 19.4880316 0.0034352 5673.04 <2e-16 ***
DESTIN_SZ835 15.6053946 0.0200445 778.54 <2e-16 ***
DESTIN_SZ844 16.5887386 0.0178695 928.33 <2e-16 ***
DESTIN_SZ846 17.0205239 0.0068926 2469.38 <2e-16 ***
DESTIN_SZ847 18.0457080 0.0046336 3894.57 <2e-16 ***
DESTIN_SZ848 17.1457727 0.0063440 2702.66 <2e-16 ***
DESTIN_SZ849 16.8029926 0.0080767 2080.44 <2e-16 ***
DESTIN_SZ850 17.6241679 0.0053437 3298.12 <2e-16 ***
DESTIN_SZ851 17.2416374 0.0061193 2817.60 <2e-16 ***
DESTIN_SZ852 17.2686220 0.0079876 2161.93 <2e-16 ***
DESTIN_SZ853 18.0919533 0.0078972 2290.94 <2e-16 ***
DESTIN_SZ854 16.5200790 0.0137976 1197.32 <2e-16 ***
DESTIN_SZ855 15.4557657 0.0194006 796.66 <2e-16 ***
DESTIN_SZ856 14.8399121 0.0305945 485.05 <2e-16 ***
DESTIN_SZ866 17.1783903 0.0097036 1770.32 <2e-16 ***
DESTIN_SZ867 18.4421175 0.0046564 3960.55 <2e-16 ***
DESTIN_SZ868 18.0440450 0.0053731 3358.20 <2e-16 ***
DESTIN_SZ869 18.6166164 0.0049498 3761.08 <2e-16 ***
DESTIN_SZ870 18.7029063 0.0030627 6106.76 <2e-16 ***
DESTIN_SZ871 19.1174343 0.0038445 4972.67 <2e-16 ***
DESTIN_SZ872 17.7233331 0.0054934 3226.32 <2e-16 ***
DESTIN_SZ873 17.4924371 0.0077039 2270.59 <2e-16 ***
DESTIN_SZ874 15.8842354 0.0130317 1218.90 <2e-16 ***
DESTIN_SZ875 15.3103070 0.0265551 576.55 <2e-16 ***
DESTIN_SZ876 15.8193529 0.0180447 876.68 <2e-16 ***
DESTIN_SZ877 16.4270996 0.0137100 1198.18 <2e-16 ***
DESTIN_SZ887 17.0729027 0.0086210 1980.38 <2e-16 ***
DESTIN_SZ888 15.9761569 0.0133600 1195.82 <2e-16 ***
DESTIN_SZ889 16.4666257 0.0125381 1313.33 <2e-16 ***
DESTIN_SZ890 17.6386824 0.0049282 3579.15 <2e-16 ***
DESTIN_SZ891 16.8883777 0.0140295 1203.77 <2e-16 ***
DESTIN_SZ893 17.9271272 0.0044286 4048.08 <2e-16 ***
DESTIN_SZ894 16.2755980 0.0110545 1472.31 <2e-16 ***
DESTIN_SZ895 16.8428082 0.0089572 1880.37 <2e-16 ***
DESTIN_SZ896 14.9497968 0.0317433 470.96 <2e-16 ***
DESTIN_SZ897 14.4624238 0.0281417 513.91 <2e-16 ***
DESTIN_SZ898 16.2524384 0.0159912 1016.34 <2e-16 ***
DESTIN_SZ908 17.2608011 0.0103537 1667.12 <2e-16 ***
DESTIN_SZ909 17.0446357 0.0061166 2786.63 <2e-16 ***
DESTIN_SZ910 16.0868090 0.0114293 1407.51 <2e-16 ***
DESTIN_SZ911 18.3128498 0.0040271 4547.36 <2e-16 ***
DESTIN_SZ912 16.7870131 0.0071293 2354.66 <2e-16 ***
DESTIN_SZ915 17.5043509 0.0057772 3029.89 <2e-16 ***
DESTIN_SZ917 17.9323462 0.0055276 3244.13 <2e-16 ***
DESTIN_SZ918 14.5122858 0.0383938 377.99 <2e-16 ***
DESTIN_SZ919 15.9198694 0.0146668 1085.44 <2e-16 ***
DESTIN_SZ928 15.8618003 0.0172313 920.52 <2e-16 ***
DESTIN_SZ929 16.8507709 0.0070258 2398.41 <2e-16 ***
DESTIN_SZ930 17.9928981 0.0038114 4720.84 <2e-16 ***
DESTIN_SZ931 16.5183596 0.0101989 1619.61 <2e-16 ***
DESTIN_SZ932 15.6268439 0.0238812 654.36 <2e-16 ***
DESTIN_SZ933 17.0836573 0.0075258 2270.02 <2e-16 ***
DESTIN_SZ934 17.0591213 0.0077684 2195.95 <2e-16 ***
DESTIN_SZ935 19.1681958 0.0027704 6918.96 <2e-16 ***
DESTIN_SZ938 13.0246629 0.1360947 95.70 <2e-16 ***
DESTIN_SZ939 18.7758507 0.0036062 5206.61 <2e-16 ***
DESTIN_SZ940 16.0253708 0.0189819 844.24 <2e-16 ***
DESTIN_SZ949 15.8607497 0.0142937 1109.64 <2e-16 ***
DESTIN_SZ950 18.1245019 0.0048519 3735.54 <2e-16 ***
DESTIN_SZ951 18.7411179 0.0029341 6387.27 <2e-16 ***
DESTIN_SZ952 18.1555445 0.0075945 2390.61 <2e-16 ***
DESTIN_SZ953 16.8946242 0.0086283 1958.05 <2e-16 ***
DESTIN_SZ954 15.3248259 0.0163325 938.30 <2e-16 ***
DESTIN_SZ955 17.9922253 0.0044198 4070.81 <2e-16 ***
DESTIN_SZ956 16.6208638 0.0091089 1824.69 <2e-16 ***
DESTIN_SZ957 17.4479657 0.0084307 2069.58 <2e-16 ***
DESTIN_SZ959 16.0089993 0.0190220 841.60 <2e-16 ***
DESTIN_SZ961 16.8328939 0.0118159 1424.60 <2e-16 ***
DESTIN_SZ962 18.6159138 0.0049615 3752.07 <2e-16 ***
DESTIN_SZ970 16.9919833 0.0068859 2467.66 <2e-16 ***
DESTIN_SZ971 17.4998961 0.0045363 3857.76 <2e-16 ***
DESTIN_SZ972 16.8755123 0.0069462 2429.45 <2e-16 ***
DESTIN_SZ974 16.5616676 0.0102263 1619.52 <2e-16 ***
DESTIN_SZ975 15.4251563 0.0158794 971.39 <2e-16 ***
DESTIN_SZ976 16.3732014 0.0106106 1543.10 <2e-16 ***
DESTIN_SZ977 17.1880489 0.0063724 2697.28 <2e-16 ***
DESTIN_SZ978 17.2404991 0.0104889 1643.69 <2e-16 ***
DESTIN_SZ982 16.3385454 0.0108122 1511.12 <2e-16 ***
DESTIN_SZ983 20.7539922 0.0036644 5663.69 <2e-16 ***
DESTIN_SZ984 21.2411933 0.0042447 5004.21 <2e-16 ***
DESTIN_SZ991 17.1600602 0.0067416 2545.39 <2e-16 ***
DESTIN_SZ992 17.3548854 0.0056962 3046.75 <2e-16 ***
DESTIN_SZ993 16.1943359 0.0092380 1753.01 <2e-16 ***
DESTIN_SZ994 15.9196512 0.0116500 1366.50 <2e-16 ***
DESTIN_SZ995 16.6286189 0.0078356 2122.18 <2e-16 ***
DESTIN_SZ996 16.2647127 0.0110524 1471.60 <2e-16 ***
DESTIN_SZ997 16.8461976 0.0126721 1329.39 <2e-16 ***
DESTIN_SZ998 17.5353271 0.0058642 2990.21 <2e-16 ***
DESTIN_SZ999 17.1440140 0.0096701 1772.90 <2e-16 ***
DESTIN_SZ1001 16.4151464 0.0156810 1046.82 <2e-16 ***
DESTIN_SZ1003 18.7811068 0.0033614 5587.21 <2e-16 ***
DESTIN_SZ1004 18.0232987 0.0047467 3797.01 <2e-16 ***
DESTIN_SZ1011 16.7255271 0.0118264 1414.26 <2e-16 ***
DESTIN_SZ1012 18.0047492 0.0064702 2782.72 <2e-16 ***
DESTIN_SZ1013 17.2862742 0.0068884 2509.49 <2e-16 ***
DESTIN_SZ1014 15.3111790 0.0157574 971.68 <2e-16 ***
DESTIN_SZ1015 17.8582201 0.0046864 3810.62 <2e-16 ***
DESTIN_SZ1016 18.2660884 0.0039781 4591.64 <2e-16 ***
DESTIN_SZ1018 16.7610528 0.0118435 1415.21 <2e-16 ***
DESTIN_SZ1019 17.8202512 0.0058375 3052.74 <2e-16 ***
DESTIN_SZ1023 16.8304393 0.0127779 1317.15 <2e-16 ***
DESTIN_SZ1024 17.7493970 0.0060017 2957.39 <2e-16 ***
DESTIN_SZ1025 13.4393325 0.0727611 184.71 <2e-16 ***
DESTIN_SZ1033 17.5490633 0.0059836 2932.84 <2e-16 ***
DESTIN_SZ1034 17.8741001 0.0047324 3776.94 <2e-16 ***
DESTIN_SZ1035 17.7713855 0.0048457 3667.49 <2e-16 ***
DESTIN_SZ1036 17.8739239 0.0045692 3911.82 <2e-16 ***
DESTIN_SZ1037 16.9989041 0.0062411 2723.69 <2e-16 ***
DESTIN_SZ1043 17.0892737 0.0104386 1637.12 <2e-16 ***
DESTIN_SZ1045 17.5045056 0.0057050 3068.30 <2e-16 ***
DESTIN_SZ1046 17.8516972 0.0055724 3203.61 <2e-16 ***
DESTIN_SZ1053 17.8842408 0.0047925 3731.69 <2e-16 ***
DESTIN_SZ1054 17.6428820 0.0050198 3514.64 <2e-16 ***
DESTIN_SZ1055 16.7345774 0.0082272 2034.06 <2e-16 ***
DESTIN_SZ1056 16.0497332 0.0107197 1497.22 <2e-16 ***
DESTIN_SZ1064 14.5330402 0.0833558 174.35 <2e-16 ***
DESTIN_SZ1066 18.6539090 0.0040080 4654.22 <2e-16 ***
DESTIN_SZ1067 18.7608968 0.0046864 4003.23 <2e-16 ***
DESTIN_SZ1074 15.8086600 0.0133132 1187.44 <2e-16 ***
DESTIN_SZ1075 17.4282521 0.0059584 2924.98 <2e-16 ***
DESTIN_SZ1076 16.7903737 0.0069028 2432.42 <2e-16 ***
DESTIN_SZ1077 16.2946219 0.0095109 1713.26 <2e-16 ***
DESTIN_SZ1079 17.4172329 0.0058660 2969.18 <2e-16 ***
DESTIN_SZ1085 15.0464762 0.0496653 302.96 <2e-16 ***
DESTIN_SZ1087 17.8739164 0.0060293 2964.51 <2e-16 ***
DESTIN_SZ1088 18.3181014 0.0051790 3536.98 <2e-16 ***
DESTIN_SZ1094 13.9083448 0.0491855 282.77 <2e-16 ***
DESTIN_SZ1095 16.4541499 0.0137176 1199.49 <2e-16 ***
DESTIN_SZ1096 16.5691805 0.0146373 1131.98 <2e-16 ***
DESTIN_SZ1097 17.8795870 0.0040978 4363.20 <2e-16 ***
DESTIN_SZ1098 15.1239122 0.0213527 708.29 <2e-16 ***
DESTIN_SZ1099 16.6635620 0.0079441 2097.61 <2e-16 ***
DESTIN_SZ1105 17.7550808 0.0085559 2075.18 <2e-16 ***
DESTIN_SZ1106 13.8523322 0.0924715 149.80 <2e-16 ***
DESTIN_SZ1107 18.0527887 0.0072214 2499.89 <2e-16 ***
DESTIN_SZ1108 19.7723852 0.0024448 8087.38 <2e-16 ***
DESTIN_SZ1109 16.2586104 0.0161578 1006.24 <2e-16 ***
DESTIN_SZ1116 16.8009076 0.0084635 1985.11 <2e-16 ***
DESTIN_SZ1117 17.2719463 0.0071524 2414.84 <2e-16 ***
DESTIN_SZ1118 15.6154935 0.0169670 920.35 <2e-16 ***
DESTIN_SZ1119 16.1190495 0.0103534 1556.88 <2e-16 ***
DESTIN_SZ1120 15.5887143 0.0165712 940.71 <2e-16 ***
DESTIN_SZ1129 17.3460300 0.0075263 2304.73 <2e-16 ***
DESTIN_SZ1130 17.9498809 0.0053804 3336.15 <2e-16 ***
DESTIN_SZ1131 19.0566621 0.0043910 4339.91 <2e-16 ***
DESTIN_SZ1136 18.0719395 0.0048528 3723.99 <2e-16 ***
DESTIN_SZ1138 15.8622721 0.0166816 950.89 <2e-16 ***
DESTIN_SZ1139 16.6894099 0.0068935 2421.03 <2e-16 ***
DESTIN_SZ1141 16.6586449 0.0078870 2112.16 <2e-16 ***
DESTIN_SZ1148 15.6233526 0.0286940 544.48 <2e-16 ***
DESTIN_SZ1149 17.1368385 0.0132903 1289.42 <2e-16 ***
DESTIN_SZ1150 17.3867416 0.0065156 2668.47 <2e-16 ***
DESTIN_SZ1151 17.5893497 0.0063887 2753.20 <2e-16 ***
DESTIN_SZ1158 16.0099031 0.0106962 1496.78 <2e-16 ***
DESTIN_SZ1159 16.3112551 0.0088234 1848.65 <2e-16 ***
DESTIN_SZ1160 17.9157843 0.0041487 4318.41 <2e-16 ***
DESTIN_SZ1171 18.0506025 0.0056971 3168.36 <2e-16 ***
DESTIN_SZ1172 19.3046404 0.0030284 6374.52 <2e-16 ***
DESTIN_SZ1173 18.1667654 0.0049617 3661.43 <2e-16 ***
DESTIN_SZ1174 14.9394399 0.0403639 370.12 <2e-16 ***
DESTIN_SZ1178 18.3203930 0.0038071 4812.18 <2e-16 ***
DESTIN_SZ1179 17.3248427 0.0052344 3309.82 <2e-16 ***
DESTIN_SZ1180 17.4721066 0.0048223 3623.17 <2e-16 ***
DESTIN_SZ1181 16.3548876 0.0086449 1891.85 <2e-16 ***
DESTIN_SZ1183 17.9730377 0.0046540 3861.86 <2e-16 ***
DESTIN_SZ1190 16.1904650 0.0252407 641.44 <2e-16 ***
DESTIN_SZ1192 18.2383098 0.0051794 3521.35 <2e-16 ***
DESTIN_SZ1193 17.7905061 0.0052624 3380.71 <2e-16 ***
DESTIN_SZ1194 17.7445415 0.0059263 2994.22 <2e-16 ***
DESTIN_SZ1200 17.0196246 0.0070001 2431.33 <2e-16 ***
DESTIN_SZ1201 16.7735793 0.0073017 2297.21 <2e-16 ***
DESTIN_SZ1203 16.7135807 0.0077440 2158.28 <2e-16 ***
DESTIN_SZ1204 16.4839797 0.0086848 1898.02 <2e-16 ***
DESTIN_SZ1211 11.6681639 0.2582055 45.19 <2e-16 ***
DESTIN_SZ1214 16.9646232 0.0082686 2051.68 <2e-16 ***
DESTIN_SZ1215 17.2442189 0.0112839 1528.22 <2e-16 ***
DESTIN_SZ1216 17.2320309 0.0095092 1812.14 <2e-16 ***
DESTIN_SZ1220 17.1288266 0.0060788 2817.79 <2e-16 ***
DESTIN_SZ1221 17.8188132 0.0042858 4157.68 <2e-16 ***
DESTIN_SZ1222 16.8781079 0.0121311 1391.31 <2e-16 ***
DESTIN_SZ1223 16.2099500 0.0107457 1508.51 <2e-16 ***
DESTIN_SZ1224 16.7223858 0.0077154 2167.39 <2e-16 ***
DESTIN_SZ1231 14.1318389 0.0561950 251.48 <2e-16 ***
DESTIN_SZ1232 16.1005173 0.0227710 707.06 <2e-16 ***
DESTIN_SZ1235 17.7679013 0.0058612 3031.46 <2e-16 ***
DESTIN_SZ1236 17.1056987 0.0081654 2094.90 <2e-16 ***
DESTIN_SZ1241 16.0680915 0.0114431 1404.18 <2e-16 ***
DESTIN_SZ1242 16.4755498 0.0087517 1882.56 <2e-16 ***
DESTIN_SZ1243 17.5221977 0.0050028 3502.46 <2e-16 ***
DESTIN_SZ1246 16.3798448 0.0084349 1941.91 <2e-16 ***
DESTIN_SZ1256 17.0223912 0.0084684 2010.10 <2e-16 ***
DESTIN_SZ1257 17.7559266 0.0061325 2895.36 <2e-16 ***
DESTIN_SZ1258 18.2388793 0.0052124 3499.15 <2e-16 ***
DESTIN_SZ1262 15.8261605 0.0131149 1206.73 <2e-16 ***
DESTIN_SZ1263 18.1185756 0.0036633 4945.99 <2e-16 ***
DESTIN_SZ1264 17.2234415 0.0070728 2435.18 <2e-16 ***
DESTIN_SZ1265 16.9015783 0.0078702 2147.53 <2e-16 ***
DESTIN_SZ1266 17.1994781 0.0067078 2564.10 <2e-16 ***
DESTIN_SZ1267 15.6431147 0.0165962 942.57 <2e-16 ***
DESTIN_SZ1272 12.7608928 0.0976083 130.74 <2e-16 ***
DESTIN_SZ1273 17.4340286 0.0069665 2502.55 <2e-16 ***
DESTIN_SZ1277 18.1344820 0.0044402 4084.17 <2e-16 ***
DESTIN_SZ1278 17.4749776 0.0060380 2894.16 <2e-16 ***
DESTIN_SZ1283 18.4625662 0.0036636 5039.53 <2e-16 ***
DESTIN_SZ1284 18.1548233 0.0039603 4584.18 <2e-16 ***
DESTIN_SZ1285 17.6556259 0.0045999 3838.27 <2e-16 ***
DESTIN_SZ1286 16.6855786 0.0093617 1782.32 <2e-16 ***
DESTIN_SZ1289 14.1719818 0.0363726 389.63 <2e-16 ***
DESTIN_SZ1293 13.2050374 0.0691978 190.83 <2e-16 ***
DESTIN_SZ1294 17.1080651 0.0085353 2004.40 <2e-16 ***
DESTIN_SZ1295 15.2533228 0.0235542 647.59 <2e-16 ***
DESTIN_SZ1298 17.3284801 0.0067929 2550.98 <2e-16 ***
DESTIN_SZ1299 17.1067353 0.0085496 2000.88 <2e-16 ***
DESTIN_SZ1304 17.4141417 0.0057014 3054.38 <2e-16 ***
DESTIN_SZ1305 17.6518532 0.0043543 4053.92 <2e-16 ***
DESTIN_SZ1307 16.1350590 0.0176180 915.83 <2e-16 ***
DESTIN_SZ1308 17.2687594 0.0056080 3079.31 <2e-16 ***
DESTIN_SZ1310 12.4216368 0.1644109 75.55 <2e-16 ***
DESTIN_SZ1316 16.0296208 0.0152791 1049.12 <2e-16 ***
DESTIN_SZ1317 15.9231738 0.0134395 1184.80 <2e-16 ***
DESTIN_SZ1318 15.6730000 0.0163827 956.68 <2e-16 ***
DESTIN_SZ1319 18.5856868 0.0036261 5125.58 <2e-16 ***
DESTIN_SZ1320 16.2469809 0.0129007 1259.38 <2e-16 ***
DESTIN_SZ1324 17.2745553 0.0162636 1062.16 <2e-16 ***
DESTIN_SZ1325 15.6357810 0.0141365 1106.06 <2e-16 ***
DESTIN_SZ1326 17.2145358 0.0056104 3068.34 <2e-16 ***
DESTIN_SZ1327 17.3999627 0.0052816 3294.44 <2e-16 ***
DESTIN_SZ1328 16.8727624 0.0065655 2569.92 <2e-16 ***
DESTIN_SZ1329 16.7551407 0.0088661 1889.81 <2e-16 ***
DESTIN_SZ1330 18.3949533 0.0052856 3480.19 <2e-16 ***
DESTIN_SZ1331 11.8615703 0.2672687 44.38 <2e-16 ***
DESTIN_SZ1333 15.7462412 0.0152780 1030.65 <2e-16 ***
DESTIN_SZ1334 16.2092596 0.0126548 1280.88 <2e-16 ***
DESTIN_SZ1335 18.0164609 0.0056084 3212.43 <2e-16 ***
DESTIN_SZ1336 14.8393180 0.0448535 330.84 <2e-16 ***
DESTIN_SZ1337 14.5948919 0.0321703 453.68 <2e-16 ***
DESTIN_SZ1338 14.7888096 0.0281017 526.26 <2e-16 ***
DESTIN_SZ1339 18.3206423 0.0039358 4654.91 <2e-16 ***
DESTIN_SZ1340 16.9197247 0.0089703 1886.18 <2e-16 ***
DESTIN_SZ1341 13.3361726 0.0936756 142.37 <2e-16 ***
DESTIN_SZ1346 17.1868562 0.0070824 2426.70 <2e-16 ***
DESTIN_SZ1347 18.2386764 0.0038049 4793.43 <2e-16 ***
DESTIN_SZ1348 16.8489134 0.0066279 2542.12 <2e-16 ***
DESTIN_SZ1349 17.6356493 0.0052859 3336.35 <2e-16 ***
DESTIN_SZ1350 16.1757649 0.0132753 1218.49 <2e-16 ***
DESTIN_SZ1353 17.1809829 0.0061671 2785.92 <2e-16 ***
DESTIN_SZ1354 16.3725684 0.0099748 1641.39 <2e-16 ***
DESTIN_SZ1355 16.2501436 0.0108738 1494.43 <2e-16 ***
DESTIN_SZ1357 15.8103820 0.0187931 841.29 <2e-16 ***
DESTIN_SZ1358 18.3725622 0.0040059 4586.41 <2e-16 ***
DESTIN_SZ1359 17.3684547 0.0061964 2802.98 <2e-16 ***
DESTIN_SZ1360 17.1741329 0.0070234 2445.27 <2e-16 ***
DESTIN_SZ1361 17.0635697 0.0087701 1945.66 <2e-16 ***
DESTIN_SZ1362 15.3493111 0.0273716 560.77 <2e-16 ***
DESTIN_SZ1368 16.4145501 0.0085791 1913.31 <2e-16 ***
DESTIN_SZ1369 16.3286685 0.0083623 1952.66 <2e-16 ***
DESTIN_SZ1370 17.8802597 0.0038852 4602.10 <2e-16 ***
DESTIN_SZ1371 16.9582784 0.0072571 2336.77 <2e-16 ***
DESTIN_SZ1372 17.0624213 0.0069779 2445.21 <2e-16 ***
DESTIN_SZ1373 14.3081091 0.0326951 437.62 <2e-16 ***
DESTIN_SZ1374 15.5221810 0.0137611 1127.98 <2e-16 ***
DESTIN_SZ1375 17.4974675 0.0071326 2453.17 <2e-16 ***
DESTIN_SZ1376 16.1593848 0.0160817 1004.83 <2e-16 ***
DESTIN_SZ1379 13.5395531 0.0665450 203.47 <2e-16 ***
DESTIN_SZ1380 18.9699444 0.0029528 6424.43 <2e-16 ***
DESTIN_SZ1381 19.4027741 0.0026661 7277.58 <2e-16 ***
DESTIN_SZ1382 18.5036292 0.0045879 4033.10 <2e-16 ***
DESTIN_SZ1383 15.9268707 0.0188154 846.48 <2e-16 ***
DESTIN_SZ1388 16.9603206 0.0064244 2639.98 <2e-16 ***
DESTIN_SZ1389 16.6666222 0.0071242 2339.43 <2e-16 ***
DESTIN_SZ1390 16.9580676 0.0065352 2594.86 <2e-16 ***
DESTIN_SZ1391 17.7666602 0.0048105 3693.28 <2e-16 ***
DESTIN_SZ1392 17.4010678 0.0112381 1548.39 <2e-16 ***
DESTIN_SZ1393 16.5726624 0.0081245 2039.85 <2e-16 ***
DESTIN_SZ1394 17.1382361 0.0054726 3131.62 <2e-16 ***
DESTIN_SZ1395 16.7289323 0.0070398 2376.35 <2e-16 ***
DESTIN_SZ1396 17.5584255 0.0052001 3376.56 <2e-16 ***
DESTIN_SZ1397 16.6984350 0.0077367 2158.35 <2e-16 ***
DESTIN_SZ1398 16.1191666 0.0143727 1121.51 <2e-16 ***
DESTIN_SZ1400 16.6809824 0.0106071 1572.63 <2e-16 ***
DESTIN_SZ1401 18.3464715 0.0035688 5140.77 <2e-16 ***
DESTIN_SZ1402 17.7718948 0.0053722 3308.09 <2e-16 ***
DESTIN_SZ1404 16.7535245 0.0219475 763.34 <2e-16 ***
DESTIN_SZ1410 17.8695589 0.0041015 4356.85 <2e-16 ***
DESTIN_SZ1411 16.9718086 0.0068452 2479.36 <2e-16 ***
DESTIN_SZ1412 17.6291458 0.0043816 4023.48 <2e-16 ***
DESTIN_SZ1413 16.9608709 0.0064157 2643.66 <2e-16 ***
DESTIN_SZ1414 16.9920441 0.0059494 2856.08 <2e-16 ***
DESTIN_SZ1415 17.4025379 0.0054870 3171.62 <2e-16 ***
DESTIN_SZ1416 16.9465729 0.0068274 2482.16 <2e-16 ***
DESTIN_SZ1417 17.3585790 0.0053774 3228.07 <2e-16 ***
DESTIN_SZ1418 17.3617002 0.0056344 3081.36 <2e-16 ***
DESTIN_SZ1419 16.8699208 0.0074142 2275.34 <2e-16 ***
DESTIN_SZ1422 17.4915713 0.0060547 2888.90 <2e-16 ***
DESTIN_SZ1423 18.0813731 0.0050503 3580.26 <2e-16 ***
DESTIN_SZ1430 17.5958491 0.0051590 3410.72 <2e-16 ***
DESTIN_SZ1431 17.9962688 0.0038842 4633.22 <2e-16 ***
DESTIN_SZ1432 17.5748127 0.0043679 4023.66 <2e-16 ***
DESTIN_SZ1433 17.0555780 0.0092268 1848.47 <2e-16 ***
DESTIN_SZ1434 17.9594755 0.0042145 4261.32 <2e-16 ***
DESTIN_SZ1435 17.5205242 0.0047981 3651.53 <2e-16 ***
DESTIN_SZ1436 16.1868761 0.0102010 1586.79 <2e-16 ***
DESTIN_SZ1437 17.0736452 0.0062098 2749.46 <2e-16 ***
DESTIN_SZ1438 17.6440817 0.0043358 4069.36 <2e-16 ***
DESTIN_SZ1439 18.3094554 0.0036481 5018.93 <2e-16 ***
DESTIN_SZ1440 17.5961346 0.0062379 2820.84 <2e-16 ***
DESTIN_SZ1442 15.7780692 0.0170844 923.54 <2e-16 ***
DESTIN_SZ1443 17.7392532 0.0056974 3113.58 <2e-16 ***
DESTIN_SZ1444 18.6749233 0.0058398 3197.88 <2e-16 ***
DESTIN_SZ1452 18.2395401 0.0035563 5128.75 <2e-16 ***
DESTIN_SZ1453 17.4338372 0.0051335 3396.06 <2e-16 ***
DESTIN_SZ1454 16.2915704 0.0111771 1457.59 <2e-16 ***
DESTIN_SZ1455 17.2428602 0.0070547 2444.18 <2e-16 ***
DESTIN_SZ1456 17.3763491 0.0056828 3057.73 <2e-16 ***
DESTIN_SZ1457 18.1424782 0.0045174 4016.11 <2e-16 ***
DESTIN_SZ1458 18.8694982 0.0028772 6558.40 <2e-16 ***
DESTIN_SZ1459 16.5016265 0.0080132 2059.31 <2e-16 ***
DESTIN_SZ1460 17.7336675 0.0044743 3963.44 <2e-16 ***
DESTIN_SZ1461 17.3825176 0.0065626 2648.71 <2e-16 ***
DESTIN_SZ1464 17.2563357 0.0067710 2548.55 <2e-16 ***
DESTIN_SZ1465 17.0548892 0.0104316 1634.92 <2e-16 ***
DESTIN_SZ1472 17.0586106 0.0072794 2343.42 <2e-16 ***
DESTIN_SZ1473 18.1308812 0.0039294 4614.15 <2e-16 ***
DESTIN_SZ1474 17.8845855 0.0037328 4791.25 <2e-16 ***
DESTIN_SZ1475 17.5920957 0.0045730 3846.97 <2e-16 ***
DESTIN_SZ1476 16.9113568 0.0069545 2431.70 <2e-16 ***
DESTIN_SZ1477 18.7992340 0.0027814 6758.88 <2e-16 ***
DESTIN_SZ1478 17.4143026 0.0051215 3400.26 <2e-16 ***
DESTIN_SZ1479 16.5852984 0.0072374 2291.60 <2e-16 ***
DESTIN_SZ1480 18.7928263 0.0028766 6533.05 <2e-16 ***
DESTIN_SZ1481 17.4975424 0.0066096 2647.30 <2e-16 ***
DESTIN_SZ1482 18.1692490 0.0049978 3635.44 <2e-16 ***
DESTIN_SZ1485 16.3567249 0.0123868 1320.50 <2e-16 ***
DESTIN_SZ1494 17.7841640 0.0045226 3932.25 <2e-16 ***
DESTIN_SZ1495 16.9721305 0.0057906 2930.96 <2e-16 ***
DESTIN_SZ1496 17.9609710 0.0037267 4819.56 <2e-16 ***
DESTIN_SZ1497 16.7278696 0.0073864 2264.68 <2e-16 ***
DESTIN_SZ1498 17.1170131 0.0061929 2763.96 <2e-16 ***
DESTIN_SZ1499 17.6147961 0.0044356 3971.21 <2e-16 ***
DESTIN_SZ1500 17.1098123 0.0080632 2121.96 <2e-16 ***
DESTIN_SZ1501 17.8988099 0.0040635 4404.76 <2e-16 ***
DESTIN_SZ1502 17.9894848 0.0043280 4156.52 <2e-16 ***
DESTIN_SZ1506 14.0131162 0.0648461 216.10 <2e-16 ***
DESTIN_SZ1514 9.6777694 0.7071088 13.69 <2e-16 ***
DESTIN_SZ1515 16.7927012 0.0128855 1303.22 <2e-16 ***
DESTIN_SZ1516 17.9841261 0.0037656 4775.85 <2e-16 ***
DESTIN_SZ1517 17.3207953 0.0064690 2677.51 <2e-16 ***
DESTIN_SZ1518 16.5715745 0.0079620 2081.33 <2e-16 ***
DESTIN_SZ1519 17.4751051 0.0076211 2292.98 <2e-16 ***
DESTIN_SZ1520 17.3443632 0.0052243 3319.93 <2e-16 ***
DESTIN_SZ1521 16.7382336 0.0074684 2241.20 <2e-16 ***
DESTIN_SZ1522 17.5579226 0.0049758 3528.64 <2e-16 ***
DESTIN_SZ1523 19.1194964 0.0041816 4572.26 <2e-16 ***
DESTIN_SZ1524 16.4657295 0.0114140 1442.59 <2e-16 ***
DESTIN_SZ1527 14.9749286 0.0313709 477.35 <2e-16 ***
DESTIN_SZ1535 14.5130318 0.0573822 252.92 <2e-16 ***
DESTIN_SZ1536 15.2280347 0.0240996 631.88 <2e-16 ***
DESTIN_SZ1537 17.3234590 0.0059704 2901.56 <2e-16 ***
DESTIN_SZ1538 17.3158480 0.0051487 3363.17 <2e-16 ***
DESTIN_SZ1539 17.4221894 0.0046647 3734.92 <2e-16 ***
DESTIN_SZ1540 16.9793325 0.0060247 2818.27 <2e-16 ***
DESTIN_SZ1541 18.2926197 0.0064498 2836.15 <2e-16 ***
DESTIN_SZ1542 16.8300365 0.0090314 1863.50 <2e-16 ***
DESTIN_SZ1543 16.3409843 0.0263679 619.73 <2e-16 ***
DESTIN_SZ1544 16.9106126 0.0088909 1902.01 <2e-16 ***
DESTIN_SZ1547 16.1939137 0.0145791 1110.77 <2e-16 ***
DESTIN_SZ1556 13.6064003 0.0696951 195.23 <2e-16 ***
DESTIN_SZ1557 15.8936042 0.0166950 952.00 <2e-16 ***
DESTIN_SZ1558 17.5133028 0.0122202 1433.14 <2e-16 ***
DESTIN_SZ1559 17.8546353 0.0040082 4454.58 <2e-16 ***
DESTIN_SZ1560 17.9747439 0.0039075 4600.03 <2e-16 ***
DESTIN_SZ1561 17.2655120 0.0067204 2569.13 <2e-16 ***
DESTIN_SZ1562 15.1645454 0.0161970 936.25 <2e-16 ***
DESTIN_SZ1563 16.2529258 0.0090854 1788.91 <2e-16 ***
DESTIN_SZ1564 16.5767076 0.0082685 2004.81 <2e-16 ***
DESTIN_SZ1565 17.4427705 0.0063578 2743.54 <2e-16 ***
DESTIN_SZ1566 15.7369877 0.0162040 971.18 <2e-16 ***
DESTIN_SZ1567 15.8117053 0.0174575 905.73 <2e-16 ***
DESTIN_SZ1568 16.9414889 0.0114010 1485.96 <2e-16 ***
DESTIN_SZ1578 14.6570463 0.0924700 158.51 <2e-16 ***
DESTIN_SZ1580 15.0635342 0.0233094 646.24 <2e-16 ***
DESTIN_SZ1581 17.6471451 0.0047818 3690.50 <2e-16 ***
DESTIN_SZ1582 17.8105650 0.0040649 4381.53 <2e-16 ***
DESTIN_SZ1583 16.5475819 0.0197303 838.69 <2e-16 ***
DESTIN_SZ1584 16.1855657 0.0118011 1371.53 <2e-16 ***
DESTIN_SZ1585 16.9464584 0.0076037 2228.72 <2e-16 ***
DESTIN_SZ1586 17.4867734 0.0054807 3190.62 <2e-16 ***
DESTIN_SZ1589 16.0163909 0.0130579 1226.57 <2e-16 ***
DESTIN_SZ1590 16.6571468 0.0132629 1255.92 <2e-16 ***
DESTIN_SZ1600 16.6015632 0.0139045 1193.97 <2e-16 ***
DESTIN_SZ1601 16.5259442 0.0071241 2319.72 <2e-16 ***
DESTIN_SZ1602 17.1604889 0.0065266 2629.30 <2e-16 ***
DESTIN_SZ1603 18.2420726 0.0040345 4521.47 <2e-16 ***
DESTIN_SZ1604 16.0416285 0.0102558 1564.16 <2e-16 ***
DESTIN_SZ1605 17.2007933 0.0056201 3060.58 <2e-16 ***
DESTIN_SZ1606 16.5855092 0.0128813 1287.57 <2e-16 ***
DESTIN_SZ1607 18.0254317 0.0043311 4161.82 <2e-16 ***
DESTIN_SZ1608 17.1587075 0.0063284 2711.38 <2e-16 ***
DESTIN_SZ1609 17.8235177 0.0051156 3484.14 <2e-16 ***
DESTIN_SZ1610 15.6573493 0.0254916 614.22 <2e-16 ***
DESTIN_SZ1622 17.1510018 0.0103534 1656.57 <2e-16 ***
DESTIN_SZ1623 17.6292060 0.0043057 4094.43 <2e-16 ***
DESTIN_SZ1624 18.2271958 0.0039333 4634.12 <2e-16 ***
DESTIN_SZ1625 17.4837096 0.0055772 3134.84 <2e-16 ***
DESTIN_SZ1626 19.1289537 0.0026498 7219.01 <2e-16 ***
DESTIN_SZ1627 16.2613924 0.0087380 1861.00 <2e-16 ***
DESTIN_SZ1628 18.3246714 0.0036560 5012.21 <2e-16 ***
DESTIN_SZ1629 15.6241006 0.0144833 1078.77 <2e-16 ***
DESTIN_SZ1630 16.2558784 0.0111208 1461.75 <2e-16 ***
DESTIN_SZ1631 15.7614608 0.0169842 928.01 <2e-16 ***
DESTIN_SZ1642 14.8036889 0.0300544 492.56 <2e-16 ***
DESTIN_SZ1643 17.1088091 0.0057135 2994.48 <2e-16 ***
DESTIN_SZ1644 17.2191393 0.0073260 2350.40 <2e-16 ***
DESTIN_SZ1645 17.0660128 0.0062213 2743.18 <2e-16 ***
DESTIN_SZ1646 17.3782039 0.0076604 2268.59 <2e-16 ***
DESTIN_SZ1647 16.9792776 0.0061372 2766.60 <2e-16 ***
DESTIN_SZ1648 17.1496292 0.0056493 3035.71 <2e-16 ***
DESTIN_SZ1649 17.8490781 0.0042681 4181.99 <2e-16 ***
DESTIN_SZ1650 17.1154168 0.0071214 2403.38 <2e-16 ***
DESTIN_SZ1664 12.8921820 0.0971442 132.71 <2e-16 ***
DESTIN_SZ1665 17.7525029 0.0041518 4275.87 <2e-16 ***
DESTIN_SZ1666 17.8285264 0.0041005 4347.92 <2e-16 ***
DESTIN_SZ1667 16.7065366 0.0143896 1161.02 <2e-16 ***
DESTIN_SZ1668 16.9395020 0.0066202 2558.76 <2e-16 ***
DESTIN_SZ1670 17.7525006 0.0044545 3985.32 <2e-16 ***
DESTIN_SZ1671 17.5703211 0.0104414 1682.76 <2e-16 ***
DESTIN_SZ1672 16.5956089 0.0116913 1419.49 <2e-16 ***
DESTIN_SZ1684 17.3872322 0.0087405 1989.28 <2e-16 ***
DESTIN_SZ1685 16.4247574 0.0085472 1921.66 <2e-16 ***
DESTIN_SZ1686 17.2128269 0.0055258 3114.98 <2e-16 ***
DESTIN_SZ1687 17.3460871 0.0066280 2617.11 <2e-16 ***
DESTIN_SZ1688 16.8840942 0.0067766 2491.52 <2e-16 ***
DESTIN_SZ1689 16.3533343 0.0098194 1665.40 <2e-16 ***
DESTIN_SZ1690 16.0020915 0.0125684 1273.20 <2e-16 ***
DESTIN_SZ1691 18.0199463 0.0043511 4141.47 <2e-16 ***
DESTIN_SZ1692 16.0120447 0.0137802 1161.96 <2e-16 ***
DESTIN_SZ1706 16.9584402 0.0075178 2255.76 <2e-16 ***
DESTIN_SZ1707 16.3673958 0.0079310 2063.71 <2e-16 ***
DESTIN_SZ1708 16.9112414 0.0062217 2718.10 <2e-16 ***
DESTIN_SZ1709 17.6503470 0.0047019 3753.91 <2e-16 ***
DESTIN_SZ1710 17.6273663 0.0050389 3498.28 <2e-16 ***
DESTIN_SZ1711 18.5350875 0.0035848 5170.52 <2e-16 ***
DESTIN_SZ1712 17.8130469 0.0042979 4144.59 <2e-16 ***
DESTIN_SZ1713 15.5895125 0.0151813 1026.89 <2e-16 ***
DESTIN_SZ1714 17.0567787 0.0080875 2109.03 <2e-16 ***
DESTIN_SZ1727 17.4845756 0.0054540 3205.84 <2e-16 ***
DESTIN_SZ1728 17.5980063 0.0045580 3860.87 <2e-16 ***
DESTIN_SZ1729 17.6642951 0.0043332 4076.53 <2e-16 ***
DESTIN_SZ1730 16.8200716 0.0084377 1993.43 <2e-16 ***
DESTIN_SZ1731 17.9704195 0.0044892 4003.01 <2e-16 ***
DESTIN_SZ1732 17.5267744 0.0047431 3695.23 <2e-16 ***
DESTIN_SZ1733 16.6265208 0.0078892 2107.51 <2e-16 ***
DESTIN_SZ1734 17.8732512 0.0047454 3766.44 <2e-16 ***
DESTIN_SZ1735 17.1838398 0.0135353 1269.56 <2e-16 ***
DESTIN_SZ1748 16.5772025 0.0088667 1869.60 <2e-16 ***
DESTIN_SZ1749 17.7792506 0.0040754 4362.58 <2e-16 ***
DESTIN_SZ1750 17.7359843 0.0043260 4099.86 <2e-16 ***
DESTIN_SZ1751 17.1013791 0.0062698 2727.57 <2e-16 ***
DESTIN_SZ1753 17.8009008 0.0044997 3955.99 <2e-16 ***
DESTIN_SZ1754 18.9634707 0.0028225 6718.71 <2e-16 ***
DESTIN_SZ1755 18.3860502 0.0035867 5126.18 <2e-16 ***
DESTIN_SZ1756 17.6076939 0.0053754 3275.62 <2e-16 ***
DESTIN_SZ1757 15.9576392 0.0222404 717.51 <2e-16 ***
DESTIN_SZ1769 17.1972293 0.0060106 2861.15 <2e-16 ***
DESTIN_SZ1770 16.8673453 0.0065812 2562.95 <2e-16 ***
DESTIN_SZ1771 17.8147366 0.0049400 3606.22 <2e-16 ***
DESTIN_SZ1772 18.1117369 0.0068683 2636.99 <2e-16 ***
DESTIN_SZ1774 17.1544472 0.0066361 2585.03 <2e-16 ***
DESTIN_SZ1775 16.8210928 0.0074912 2245.45 <2e-16 ***
DESTIN_SZ1776 19.0063132 0.0028909 6574.55 <2e-16 ***
DESTIN_SZ1777 17.2297407 0.0068478 2516.11 <2e-16 ***
DESTIN_SZ1778 16.3113991 0.0204330 798.29 <2e-16 ***
DESTIN_SZ1790 17.7884416 0.0050186 3544.49 <2e-16 ***
DESTIN_SZ1791 17.3684144 0.0056632 3066.89 <2e-16 ***
DESTIN_SZ1792 17.4850258 0.0067722 2581.88 <2e-16 ***
DESTIN_SZ1793 17.3294121 0.0056848 3048.36 <2e-16 ***
DESTIN_SZ1794 18.4045864 0.0074073 2484.66 <2e-16 ***
DESTIN_SZ1795 15.3145014 0.0204110 750.30 <2e-16 ***
DESTIN_SZ1796 17.7496309 0.0052356 3390.21 <2e-16 ***
DESTIN_SZ1797 17.4572012 0.0053366 3271.22 <2e-16 ***
DESTIN_SZ1798 17.8062969 0.0051241 3474.98 <2e-16 ***
DESTIN_SZ1799 16.8403725 0.0086635 1943.82 <2e-16 ***
DESTIN_SZ1800 15.1299119 0.0504103 300.13 <2e-16 ***
DESTIN_SZ1811 16.8623634 0.0075259 2240.57 <2e-16 ***
DESTIN_SZ1812 18.2088057 0.0034745 5240.72 <2e-16 ***
DESTIN_SZ1813 18.3473031 0.0034038 5390.28 <2e-16 ***
DESTIN_SZ1817 16.3418479 0.0112903 1447.43 <2e-16 ***
DESTIN_SZ1818 17.3959086 0.0057082 3047.54 <2e-16 ***
DESTIN_SZ1819 19.0301177 0.0029167 6524.44 <2e-16 ***
DESTIN_SZ1820 14.4879397 0.0428302 338.26 <2e-16 ***
DESTIN_SZ1832 18.1721450 0.0042019 4324.70 <2e-16 ***
DESTIN_SZ1833 16.8372061 0.0068755 2448.88 <2e-16 ***
DESTIN_SZ1834 16.8405088 0.0065834 2558.04 <2e-16 ***
DESTIN_SZ1835 16.9110546 0.0074557 2268.19 <2e-16 ***
DESTIN_SZ1837 16.8043957 0.0135585 1239.39 <2e-16 ***
DESTIN_SZ1839 16.2886982 0.0119564 1362.34 <2e-16 ***
DESTIN_SZ1840 18.8848321 0.0032670 5780.55 <2e-16 ***
DESTIN_SZ1841 15.6033295 0.0232972 669.75 <2e-16 ***
DESTIN_SZ1842 16.8940267 0.0145941 1157.59 <2e-16 ***
DESTIN_SZ1853 17.1972783 0.0057046 3014.65 <2e-16 ***
DESTIN_SZ1854 17.4684080 0.0050452 3462.36 <2e-16 ***
DESTIN_SZ1855 17.9040269 0.0045582 3927.88 <2e-16 ***
DESTIN_SZ1858 17.5610522 0.0082326 2133.10 <2e-16 ***
DESTIN_SZ1860 17.0935896 0.0183125 933.44 <2e-16 ***
DESTIN_SZ1861 17.6914934 0.0058028 3048.77 <2e-16 ***
DESTIN_SZ1874 16.8217670 0.0092961 1809.55 <2e-16 ***
DESTIN_SZ1875 15.2454264 0.0202706 752.10 <2e-16 ***
DESTIN_SZ1876 16.3349748 0.0214493 761.56 <2e-16 ***
DESTIN_SZ1877 17.7557939 0.0048933 3628.57 <2e-16 ***
DESTIN_SZ1880 16.5291753 0.0138749 1191.30 <2e-16 ***
DESTIN_SZ1882 17.5795193 0.0061657 2851.16 <2e-16 ***
DESTIN_SZ1883 16.5886458 0.0186349 890.19 <2e-16 ***
DESTIN_SZ1895 17.5350776 0.0051253 3421.30 <2e-16 ***
DESTIN_SZ1896 16.7634577 0.0076140 2201.65 <2e-16 ***
DESTIN_SZ1897 16.3208024 0.0113616 1436.49 <2e-16 ***
DESTIN_SZ1898 15.6552939 0.0247542 632.43 <2e-16 ***
DESTIN_SZ1901 15.9694813 0.0200557 796.26 <2e-16 ***
DESTIN_SZ1903 16.1479844 0.0164380 982.35 <2e-16 ***
DESTIN_SZ1917 16.4402676 0.0088605 1855.45 <2e-16 ***
DESTIN_SZ1918 18.1017515 0.0061984 2920.40 <2e-16 ***
DESTIN_SZ1919 17.9361858 0.0045968 3901.87 <2e-16 ***
DESTIN_SZ1922 17.1134742 0.0105241 1626.13 <2e-16 ***
DESTIN_SZ1924 15.9957806 0.0195998 816.12 <2e-16 ***
DESTIN_SZ1937 16.9263627 0.0074478 2272.66 <2e-16 ***
DESTIN_SZ1938 17.9516126 0.0044855 4002.13 <2e-16 ***
DESTIN_SZ1939 17.0551964 0.0080262 2124.94 <2e-16 ***
DESTIN_SZ1942 16.1549721 0.0186488 866.27 <2e-16 ***
DESTIN_SZ1959 16.6215011 0.0092674 1793.54 <2e-16 ***
DESTIN_SZ1960 19.0879197 0.0026872 7103.25 <2e-16 ***
DESTIN_SZ1961 16.7417291 0.0094841 1765.24 <2e-16 ***
DESTIN_SZ1962 17.5538765 0.0059338 2958.29 <2e-16 ***
DESTIN_SZ1964 18.0694239 0.0109127 1655.82 <2e-16 ***
DESTIN_SZ1979 16.9353751 0.0081770 2071.09 <2e-16 ***
DESTIN_SZ1980 17.0755520 0.0066266 2576.82 <2e-16 ***
DESTIN_SZ1981 17.1623960 0.0069721 2461.56 <2e-16 ***
DESTIN_SZ1982 17.7069090 0.0070717 2503.92 <2e-16 ***
DESTIN_SZ1983 17.5321303 0.0059919 2925.99 <2e-16 ***
DESTIN_SZ1984 17.3040220 0.0061877 2796.50 <2e-16 ***
DESTIN_SZ1985 17.6967797 0.0058128 3044.44 <2e-16 ***
DESTIN_SZ2001 17.0599093 0.0065178 2617.43 <2e-16 ***
DESTIN_SZ2002 17.3903322 0.0050415 3449.47 <2e-16 ***
DESTIN_SZ2003 18.0518300 0.0043596 4140.68 <2e-16 ***
DESTIN_SZ2004 18.3363157 0.0041171 4453.68 <2e-16 ***
DESTIN_SZ2005 17.1532095 0.0063773 2689.73 <2e-16 ***
DESTIN_SZ2006 18.2144546 0.0046465 3920.01 <2e-16 ***
DESTIN_SZ2007 15.0407848 0.0296401 507.45 <2e-16 ***
DESTIN_SZ2022 17.6896037 0.0063981 2764.80 <2e-16 ***
DESTIN_SZ2023 17.8550645 0.0046104 3872.80 <2e-16 ***
DESTIN_SZ2024 18.1751126 0.0039777 4569.24 <2e-16 ***
DESTIN_SZ2025 17.1314917 0.0064363 2661.72 <2e-16 ***
DESTIN_SZ2026 16.3461928 0.0115865 1410.79 <2e-16 ***
DESTIN_SZ2027 18.0907515 0.0044046 4107.22 <2e-16 ***
DESTIN_SZ2043 16.2006762 0.0111394 1454.36 <2e-16 ***
DESTIN_SZ2044 17.2464964 0.0057305 3009.59 <2e-16 ***
DESTIN_SZ2045 16.7799564 0.0116939 1434.93 <2e-16 ***
DESTIN_SZ2046 18.2387337 0.0036676 4972.99 <2e-16 ***
DESTIN_SZ2047 16.5589614 0.0090044 1838.98 <2e-16 ***
DESTIN_SZ2048 16.6440793 0.0084165 1977.57 <2e-16 ***
DESTIN_SZ2049 14.9903280 0.0276919 541.33 <2e-16 ***
DESTIN_SZ2064 17.0500355 0.0069422 2455.99 <2e-16 ***
DESTIN_SZ2065 16.9370135 0.0070668 2396.70 <2e-16 ***
DESTIN_SZ2066 15.1753466 0.0324733 467.32 <2e-16 ***
DESTIN_SZ2067 19.5021151 0.0024554 7942.46 <2e-16 ***
DESTIN_SZ2068 16.6213149 0.0130997 1268.83 <2e-16 ***
DESTIN_SZ2069 16.8594945 0.0082006 2055.89 <2e-16 ***
DESTIN_SZ2085 17.0904490 0.0073605 2321.90 <2e-16 ***
DESTIN_SZ2086 18.2772357 0.0037498 4874.16 <2e-16 ***
DESTIN_SZ2087 18.0889350 0.0040279 4490.89 <2e-16 ***
DESTIN_SZ2088 17.3029530 0.0056087 3085.01 <2e-16 ***
DESTIN_SZ2089 17.0015397 0.0088051 1930.86 <2e-16 ***
DESTIN_SZ2090 19.1760482 0.0027444 6987.30 <2e-16 ***
DESTIN_SZ2091 14.0647667 0.0665418 211.37 <2e-16 ***
DESTIN_SZ2105 15.9401982 0.0636648 250.38 <2e-16 ***
DESTIN_SZ2106 15.5885926 0.0148891 1046.98 <2e-16 ***
DESTIN_SZ2107 18.2606668 0.0037141 4916.53 <2e-16 ***
DESTIN_SZ2108 18.0256039 0.0045837 3932.55 <2e-16 ***
DESTIN_SZ2109 17.0341340 0.0064513 2640.41 <2e-16 ***
DESTIN_SZ2110 16.4783325 0.0115616 1425.26 <2e-16 ***
DESTIN_SZ2111 15.1465446 0.0329430 459.78 <2e-16 ***
DESTIN_SZ2128 17.2202324 0.0082295 2092.51 <2e-16 ***
DESTIN_SZ2129 16.5528201 0.0098828 1674.91 <2e-16 ***
DESTIN_SZ2130 17.3476185 0.0053464 3244.73 <2e-16 ***
DESTIN_SZ2131 17.4105124 0.0069407 2508.48 <2e-16 ***
DESTIN_SZ2132 17.0130022 0.0074096 2296.07 <2e-16 ***
DESTIN_SZ2148 16.3085207 0.0146352 1114.34 <2e-16 ***
DESTIN_SZ2149 16.3982869 0.0108065 1517.45 <2e-16 ***
DESTIN_SZ2150 16.7223793 0.0081235 2058.51 <2e-16 ***
DESTIN_SZ2151 18.6217838 0.0031665 5880.87 <2e-16 ***
DESTIN_SZ2152 17.7368329 0.0050850 3488.08 <2e-16 ***
DESTIN_SZ2153 16.4151939 0.0111532 1471.79 <2e-16 ***
DESTIN_SZ2171 17.5000225 0.0054451 3213.91 <2e-16 ***
DESTIN_SZ2172 16.3172933 0.0109332 1492.45 <2e-16 ***
DESTIN_SZ2173 16.7742789 0.0072780 2304.78 <2e-16 ***
DESTIN_SZ2174 17.3302208 0.0065154 2659.90 <2e-16 ***
DESTIN_SZ2191 17.5527703 0.0073207 2397.67 <2e-16 ***
DESTIN_SZ2192 16.3931709 0.0107252 1528.47 <2e-16 ***
DESTIN_SZ2193 17.2515636 0.0063032 2736.94 <2e-16 ***
DESTIN_SZ2194 17.3483342 0.0056916 3048.04 <2e-16 ***
DESTIN_SZ2195 15.8344157 0.0354660 446.47 <2e-16 ***
DESTIN_SZ2212 17.5803345 0.0127446 1379.43 <2e-16 ***
DESTIN_SZ2213 17.3429779 0.0080955 2142.29 <2e-16 ***
DESTIN_SZ2214 18.0067877 0.0069758 2581.32 <2e-16 ***
DESTIN_SZ2215 16.4921760 0.0094232 1750.17 <2e-16 ***
DESTIN_SZ2216 17.5061556 0.0060488 2894.17 <2e-16 ***
DESTIN_SZ2233 18.1631439 0.0096552 1881.17 <2e-16 ***
DESTIN_SZ2234 18.2930066 0.0081262 2251.11 <2e-16 ***
DESTIN_SZ2235 17.2635477 0.0087521 1972.51 <2e-16 ***
DESTIN_SZ2236 16.0178504 0.0136219 1175.89 <2e-16 ***
DESTIN_SZ2237 16.8737028 0.0112997 1493.29 <2e-16 ***
DESTIN_SZ2256 17.3481627 0.0119974 1446.00 <2e-16 ***
DESTIN_SZ2257 14.8625823 0.0261906 567.48 <2e-16 ***
DESTIN_SZ2258 16.8838961 0.0073537 2295.97 <2e-16 ***
DESTIN_SZ2259 17.7783318 0.0102016 1742.70 <2e-16 ***
DESTIN_SZ2277 16.1709752 0.0255881 631.97 <2e-16 ***
DESTIN_SZ2278 16.2155661 0.0157684 1028.36 <2e-16 ***
DESTIN_SZ2279 16.9167526 0.0075457 2241.92 <2e-16 ***
DESTIN_SZ2280 15.3121609 0.0311673 491.29 <2e-16 ***
DESTIN_SZ2297 16.1713813 0.0185179 873.28 <2e-16 ***
DESTIN_SZ2300 15.8616765 0.0205042 773.58 <2e-16 ***
DESTIN_SZ2301 16.6383378 0.0098711 1685.55 <2e-16 ***
DESTIN_SZ2318 18.6841212 0.0057960 3223.60 <2e-16 ***
DESTIN_SZ2319 18.5967829 0.0052309 3555.19 <2e-16 ***
DESTIN_SZ2322 17.1295002 0.0091323 1875.71 <2e-16 ***
DESTIN_SZ2337 17.5512708 0.0152767 1148.89 <2e-16 ***
DESTIN_SZ2341 18.9567095 0.0051747 3663.34 <2e-16 ***
DESTIN_SZ2343 16.1664742 0.0128582 1257.29 <2e-16 ***
DESTIN_SZ2361 17.4875772 0.0092317 1894.30 <2e-16 ***
DESTIN_SZ2364 14.9083138 0.0295342 504.78 <2e-16 ***
DESTIN_SZ2379 16.6530440 0.0241213 690.39 <2e-16 ***
DESTIN_SZ2384 18.1613369 0.0066839 2717.16 <2e-16 ***
DESTIN_SZ2405 18.5765284 0.0048050 3866.10 <2e-16 ***
DESTIN_SZ2406 15.5243322 0.0235366 659.58 <2e-16 ***
DESTIN_SZ2426 17.9192434 0.0109187 1641.14 <2e-16 ***
DESTIN_SZ2427 18.1441130 0.0066972 2709.19 <2e-16 ***
DESTIN_SZ2505 18.1648361 0.0181967 998.25 <2e-16 ***
log(BUSINESS_num) NA NA NA NA
log(FB_num) NA NA NA NA
log(schools_num) NA NA NA NA
log(hdb_num) NA NA NA NA
log(entertn_num) NA NA NA NA
log(dist) -1.4618825 0.0002562 -5705.39 <2e-16 ***
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
(Dispersion parameter for poisson family taken to be 1)
Null deviance: 349181331 on 64962 degrees of freedom
Residual deviance: 45737568 on 64142 degrees of freedom
AIC: 46097578
Number of Fisher Scoring iterations: 8
9.4.4 Doubly constrained
dbcSIM <- glm(formula = MORNING_PEAK ~ ORIGIN_SZ + DESTIN_SZ + log(dist), family = poisson(link = "log"), data = inter_zonal_flow, na.action = na.exclude)the calculated R-squared is 0.5871965, indicating that the model accounts for approximately 58.72% of the variability in the observed MORNING_PEAK.
Code
CalcRSquared(dbcSIM$data$MORNING_PEAK, dbcSIM$fitted.values)[1] 0.5871965
Code
dbcSIM$coefficients[1](Intercept)
14.78251
Code
dbcSIM$coefficients[1635]DESTIN_SZ2505
0.7094831
Code
options(max.print = 10000)
summary(dbcSIM)
Call:
glm(formula = MORNING_PEAK ~ ORIGIN_SZ + DESTIN_SZ + log(dist),
family = poisson(link = "log"), data = inter_zonal_flow,
na.action = na.exclude)
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) 14.7825131 0.1376669 107.379 < 2e-16 ***
ORIGIN_SZ44 1.8651637 0.1913130 9.749 < 2e-16 ***
ORIGIN_SZ46 -0.4638760 0.1580502 -2.935 0.003336 **
ORIGIN_SZ66 0.8207510 0.1832131 4.480 7.47e-06 ***
ORIGIN_SZ67 1.7280743 0.1304829 13.244 < 2e-16 ***
ORIGIN_SZ68 -0.5924438 0.1696234 -3.493 0.000478 ***
ORIGIN_SZ86 -0.4088340 0.1503510 -2.719 0.006544 **
ORIGIN_SZ87 3.5035738 0.1480694 23.662 < 2e-16 ***
ORIGIN_SZ88 2.5215503 0.1292031 19.516 < 2e-16 ***
ORIGIN_SZ89 0.2300891 0.1375846 1.672 0.094456 .
ORIGIN_SZ90 1.0781361 0.1779172 6.060 1.36e-09 ***
ORIGIN_SZ109 0.6458122 0.1567823 4.119 3.80e-05 ***
ORIGIN_SZ110 0.6774575 0.1494445 4.533 5.81e-06 ***
ORIGIN_SZ111 4.0448044 0.1288315 31.396 < 2e-16 ***
ORIGIN_SZ112 0.1521353 0.1453988 1.046 0.295408
ORIGIN_SZ128 3.3585869 0.1312681 25.586 < 2e-16 ***
ORIGIN_SZ129 0.4780069 0.2187567 2.185 0.028881 *
ORIGIN_SZ130 1.4046878 0.1390554 10.102 < 2e-16 ***
ORIGIN_SZ131 1.1414313 0.1322103 8.633 < 2e-16 ***
ORIGIN_SZ132 0.2245551 0.1388237 1.618 0.105758
ORIGIN_SZ133 1.1920048 0.1344194 8.868 < 2e-16 ***
ORIGIN_SZ134 4.3098259 0.1312397 32.839 < 2e-16 ***
ORIGIN_SZ150 4.3536568 0.1297949 33.543 < 2e-16 ***
ORIGIN_SZ151 0.7972520 0.1445269 5.516 3.46e-08 ***
ORIGIN_SZ152 0.2520616 0.1527246 1.650 0.098855 .
ORIGIN_SZ153 1.6168138 0.1350720 11.970 < 2e-16 ***
ORIGIN_SZ154 4.2669539 0.1283580 33.243 < 2e-16 ***
ORIGIN_SZ155 1.2036839 0.1329298 9.055 < 2e-16 ***
ORIGIN_SZ156 2.1952570 0.1355002 16.201 < 2e-16 ***
ORIGIN_SZ172 2.4447822 0.1435353 17.033 < 2e-16 ***
ORIGIN_SZ174 1.1354702 0.1367109 8.306 < 2e-16 ***
ORIGIN_SZ175 3.8895209 0.1286409 30.235 < 2e-16 ***
ORIGIN_SZ176 4.9927160 0.1282428 38.932 < 2e-16 ***
ORIGIN_SZ195 0.1461498 0.1503134 0.972 0.330901
ORIGIN_SZ196 1.1205023 0.1339388 8.366 < 2e-16 ***
ORIGIN_SZ197 0.2039552 0.1785044 1.143 0.253214
ORIGIN_SZ215 1.7228934 0.1548747 11.124 < 2e-16 ***
ORIGIN_SZ216 5.3512021 0.1283651 41.687 < 2e-16 ***
ORIGIN_SZ217 2.4696949 0.1299800 19.001 < 2e-16 ***
ORIGIN_SZ237 -0.1148070 0.2104278 -0.546 0.585349
ORIGIN_SZ238 0.9871565 0.1467267 6.728 1.72e-11 ***
ORIGIN_SZ239 1.2506722 0.1870828 6.685 2.31e-11 ***
ORIGIN_SZ257 0.2715459 0.1408892 1.927 0.053933 .
ORIGIN_SZ258 2.2349763 0.1314398 17.004 < 2e-16 ***
ORIGIN_SZ259 1.6038725 0.1342585 11.946 < 2e-16 ***
ORIGIN_SZ278 1.8380732 0.1332248 13.797 < 2e-16 ***
ORIGIN_SZ279 0.6102791 0.1357349 4.496 6.92e-06 ***
ORIGIN_SZ280 1.0967209 0.1369188 8.010 1.15e-15 ***
ORIGIN_SZ298 -2.9525019 0.3573065 -8.263 < 2e-16 ***
ORIGIN_SZ299 0.4052485 0.1386668 2.922 0.003473 **
ORIGIN_SZ300 4.2242256 0.1285551 32.859 < 2e-16 ***
ORIGIN_SZ320 -0.1304437 0.1374289 -0.949 0.342533
ORIGIN_SZ321 1.0223496 0.1486339 6.878 6.06e-12 ***
ORIGIN_SZ322 2.1303020 0.1344205 15.848 < 2e-16 ***
ORIGIN_SZ340 1.7776512 0.1312870 13.540 < 2e-16 ***
ORIGIN_SZ341 0.1698864 0.1359914 1.249 0.211576
ORIGIN_SZ342 2.0446107 0.1344315 15.209 < 2e-16 ***
ORIGIN_SZ363 1.7399036 0.1336962 13.014 < 2e-16 ***
ORIGIN_SZ364 2.2324348 0.1310346 17.037 < 2e-16 ***
ORIGIN_SZ383 1.2662322 0.1319317 9.598 < 2e-16 ***
ORIGIN_SZ384 0.4729125 0.1372673 3.445 0.000571 ***
ORIGIN_SZ385 1.6732365 0.1364878 12.259 < 2e-16 ***
ORIGIN_SZ404 2.2671817 0.1316880 17.216 < 2e-16 ***
ORIGIN_SZ405 0.6452881 0.1382800 4.667 3.06e-06 ***
ORIGIN_SZ406 6.0984179 0.1282803 47.540 < 2e-16 ***
ORIGIN_SZ407 2.3074859 0.1341287 17.204 < 2e-16 ***
ORIGIN_SZ408 3.0326485 0.1298347 23.358 < 2e-16 ***
ORIGIN_SZ425 -0.4946901 0.1608092 -3.076 0.002096 **
ORIGIN_SZ426 1.5311039 0.1318184 11.615 < 2e-16 ***
ORIGIN_SZ427 0.9190448 0.1350628 6.805 1.01e-11 ***
ORIGIN_SZ428 1.0913201 0.1480848 7.370 1.71e-13 ***
ORIGIN_SZ429 2.5227525 0.1294959 19.481 < 2e-16 ***
ORIGIN_SZ446 1.4303619 0.1412628 10.126 < 2e-16 ***
ORIGIN_SZ447 0.7386870 0.1344585 5.494 3.93e-08 ***
ORIGIN_SZ448 1.9352844 0.1310960 14.762 < 2e-16 ***
ORIGIN_SZ449 5.2559562 0.1284385 40.922 < 2e-16 ***
ORIGIN_SZ450 2.2474602 0.1294904 17.356 < 2e-16 ***
ORIGIN_SZ468 1.9333540 0.1318865 14.659 < 2e-16 ***
ORIGIN_SZ469 3.1703947 0.1291647 24.545 < 2e-16 ***
ORIGIN_SZ470 5.2270506 0.1283788 40.716 < 2e-16 ***
ORIGIN_SZ471 3.2081727 0.1291587 24.839 < 2e-16 ***
ORIGIN_SZ488 0.8657735 0.1398141 6.192 5.93e-10 ***
ORIGIN_SZ489 -0.8857821 0.2053213 -4.314 1.60e-05 ***
ORIGIN_SZ490 3.6851496 0.1288719 28.595 < 2e-16 ***
ORIGIN_SZ491 4.1880606 0.1285170 32.588 < 2e-16 ***
ORIGIN_SZ493 -1.1749485 0.2122468 -5.536 3.10e-08 ***
ORIGIN_SZ494 1.2353383 0.1428587 8.647 < 2e-16 ***
ORIGIN_SZ509 0.7461932 0.1334786 5.590 2.27e-08 ***
ORIGIN_SZ510 1.5711689 0.1308049 12.012 < 2e-16 ***
ORIGIN_SZ511 3.1384338 0.1287544 24.375 < 2e-16 ***
ORIGIN_SZ512 5.8131536 0.1283280 45.299 < 2e-16 ***
ORIGIN_SZ513 2.3201534 0.1306174 17.763 < 2e-16 ***
ORIGIN_SZ514 2.1168213 0.1340983 15.786 < 2e-16 ***
ORIGIN_SZ515 0.3959269 0.1995066 1.985 0.047197 *
ORIGIN_SZ530 -0.1051997 0.1551347 -0.678 0.497697
ORIGIN_SZ531 2.1354352 0.1298169 16.450 < 2e-16 ***
ORIGIN_SZ532 1.5154353 0.1307571 11.590 < 2e-16 ***
ORIGIN_SZ533 5.5870356 0.1283265 43.538 < 2e-16 ***
ORIGIN_SZ534 6.1313157 0.1283403 47.774 < 2e-16 ***
ORIGIN_SZ536 2.8040298 0.1308424 21.431 < 2e-16 ***
ORIGIN_SZ537 0.9009629 0.1773825 5.079 3.79e-07 ***
ORIGIN_SZ538 0.7319978 0.2448586 2.989 0.002795 **
ORIGIN_SZ539 0.1889885 1.0087880 0.187 0.851392
ORIGIN_SZ551 -0.0802166 0.1389218 -0.577 0.563654
ORIGIN_SZ552 2.3580939 0.1334290 17.673 < 2e-16 ***
ORIGIN_SZ553 1.9548006 0.1294728 15.098 < 2e-16 ***
ORIGIN_SZ554 5.4436879 0.1283357 42.418 < 2e-16 ***
ORIGIN_SZ555 4.7990556 0.1284894 37.350 < 2e-16 ***
ORIGIN_SZ559 1.3434072 0.1615223 8.317 < 2e-16 ***
ORIGIN_SZ560 3.7651027 0.1360404 27.676 < 2e-16 ***
ORIGIN_SZ561 -1.3562021 1.0094990 -1.343 0.179129
ORIGIN_SZ572 -1.8802721 0.4282239 -4.391 1.13e-05 ***
ORIGIN_SZ573 0.4595648 0.1350553 3.403 0.000667 ***
ORIGIN_SZ574 1.8237630 0.1334734 13.664 < 2e-16 ***
ORIGIN_SZ575 6.5891046 0.1283083 51.354 < 2e-16 ***
ORIGIN_SZ576 5.0716420 0.1283839 39.504 < 2e-16 ***
ORIGIN_SZ578 0.3477660 0.1612539 2.157 0.031034 *
ORIGIN_SZ582 0.7041518 0.1661964 4.237 2.27e-05 ***
ORIGIN_SZ583 0.6990335 0.4279531 1.633 0.102378
ORIGIN_SZ584 4.2195182 0.1384317 30.481 < 2e-16 ***
ORIGIN_SZ593 1.5726840 0.1370901 11.472 < 2e-16 ***
ORIGIN_SZ594 1.5817148 0.1308139 12.091 < 2e-16 ***
ORIGIN_SZ595 1.8243274 0.1296637 14.070 < 2e-16 ***
ORIGIN_SZ596 4.8396880 0.1283597 37.704 < 2e-16 ***
ORIGIN_SZ597 2.0869369 0.1405580 14.848 < 2e-16 ***
ORIGIN_SZ603 1.3234042 0.1692391 7.820 5.29e-15 ***
ORIGIN_SZ604 1.7550673 0.2231652 7.864 3.71e-15 ***
ORIGIN_SZ615 0.2206062 0.1363140 1.618 0.105583
ORIGIN_SZ616 1.2829325 0.1320936 9.712 < 2e-16 ***
ORIGIN_SZ617 2.1648199 0.1295708 16.708 < 2e-16 ***
ORIGIN_SZ618 5.5155910 0.1283468 42.974 < 2e-16 ***
ORIGIN_SZ620 2.6761751 0.1317617 20.311 < 2e-16 ***
ORIGIN_SZ637 1.0365392 0.1348394 7.687 1.50e-14 ***
ORIGIN_SZ638 4.9647838 0.1283593 38.679 < 2e-16 ***
ORIGIN_SZ657 2.8464046 0.1293749 22.001 < 2e-16 ***
ORIGIN_SZ658 4.3118367 0.1284518 33.568 < 2e-16 ***
ORIGIN_SZ659 4.5165384 0.1284061 35.174 < 2e-16 ***
ORIGIN_SZ660 5.6795444 0.1283370 44.255 < 2e-16 ***
ORIGIN_SZ662 5.6490277 0.1285159 43.956 < 2e-16 ***
ORIGIN_SZ677 2.7261064 0.1302955 20.922 < 2e-16 ***
ORIGIN_SZ678 0.5485599 0.1364948 4.019 5.85e-05 ***
ORIGIN_SZ679 5.5476455 0.1283465 43.224 < 2e-16 ***
ORIGIN_SZ680 5.7814553 0.1283449 45.046 < 2e-16 ***
ORIGIN_SZ681 4.4894509 0.1285630 34.920 < 2e-16 ***
ORIGIN_SZ699 2.2405240 0.1302647 17.200 < 2e-16 ***
ORIGIN_SZ700 4.4925825 0.1284369 34.979 < 2e-16 ***
ORIGIN_SZ701 4.4095803 0.1284380 34.332 < 2e-16 ***
ORIGIN_SZ702 5.4786781 0.1283432 42.688 < 2e-16 ***
ORIGIN_SZ704 2.5640128 0.1322083 19.394 < 2e-16 ***
ORIGIN_SZ722 2.2596147 0.1295939 17.436 < 2e-16 ***
ORIGIN_SZ725 2.0324175 0.1345148 15.109 < 2e-16 ***
ORIGIN_SZ741 2.7762245 0.1293588 21.461 < 2e-16 ***
ORIGIN_SZ743 2.9902364 0.1288881 23.200 < 2e-16 ***
ORIGIN_SZ744 5.0780767 0.1283722 39.557 < 2e-16 ***
ORIGIN_SZ761 2.3192045 0.1312756 17.667 < 2e-16 ***
ORIGIN_SZ762 4.2846462 0.1285059 33.342 < 2e-16 ***
ORIGIN_SZ763 1.5206569 0.1310794 11.601 < 2e-16 ***
ORIGIN_SZ764 5.5790146 0.1283416 43.470 < 2e-16 ***
ORIGIN_SZ765 4.7777270 0.1285630 37.163 < 2e-16 ***
ORIGIN_SZ767 6.6070303 0.1283571 51.474 < 2e-16 ***
ORIGIN_SZ772 1.3281976 0.1484396 8.948 < 2e-16 ***
ORIGIN_SZ784 1.3670047 0.1310123 10.434 < 2e-16 ***
ORIGIN_SZ785 4.6756446 0.1283700 36.423 < 2e-16 ***
ORIGIN_SZ786 4.3556867 0.1284389 33.913 < 2e-16 ***
ORIGIN_SZ787 4.9407778 0.1285040 38.448 < 2e-16 ***
ORIGIN_SZ788 5.7989893 0.1284141 45.159 < 2e-16 ***
ORIGIN_SZ789 4.2570120 0.1287218 33.071 < 2e-16 ***
ORIGIN_SZ803 0.5015402 0.1388696 3.612 0.000304 ***
ORIGIN_SZ804 5.3266445 0.1283676 41.495 < 2e-16 ***
ORIGIN_SZ805 5.2948963 0.1283446 41.255 < 2e-16 ***
ORIGIN_SZ806 5.0165155 0.1283678 39.079 < 2e-16 ***
ORIGIN_SZ807 6.0112348 0.1283728 46.826 < 2e-16 ***
ORIGIN_SZ808 4.2397833 0.1287592 32.928 < 2e-16 ***
ORIGIN_SZ809 6.0018355 0.1283491 46.762 < 2e-16 ***
ORIGIN_SZ810 5.2248926 0.1284356 40.681 < 2e-16 ***
ORIGIN_SZ814 3.1415033 0.1311682 23.950 < 2e-16 ***
ORIGIN_SZ819 5.2782677 0.1295641 40.739 < 2e-16 ***
ORIGIN_SZ824 1.4838427 0.1338729 11.084 < 2e-16 ***
ORIGIN_SZ826 2.9697079 0.1286813 23.078 < 2e-16 ***
ORIGIN_SZ827 4.9601290 0.1283584 38.643 < 2e-16 ***
ORIGIN_SZ828 5.3539759 0.1283522 41.713 < 2e-16 ***
ORIGIN_SZ829 5.4057517 0.1283801 42.107 < 2e-16 ***
ORIGIN_SZ830 5.6207518 0.1284042 43.774 < 2e-16 ***
ORIGIN_SZ831 6.5320399 0.1283357 50.898 < 2e-16 ***
ORIGIN_SZ832 5.6900053 0.1284630 44.293 < 2e-16 ***
ORIGIN_SZ835 3.0146096 0.1315282 22.920 < 2e-16 ***
ORIGIN_SZ844 0.4681830 0.1482345 3.158 0.001586 **
ORIGIN_SZ846 4.3998432 0.1284074 34.265 < 2e-16 ***
ORIGIN_SZ847 3.5040945 0.1286150 27.245 < 2e-16 ***
ORIGIN_SZ848 4.7250679 0.1283870 36.803 < 2e-16 ***
ORIGIN_SZ849 3.9550633 0.1285238 30.773 < 2e-16 ***
ORIGIN_SZ850 4.8690494 0.1284142 37.917 < 2e-16 ***
ORIGIN_SZ851 5.4253340 0.1283676 42.264 < 2e-16 ***
ORIGIN_SZ852 4.9548384 0.1284522 38.573 < 2e-16 ***
ORIGIN_SZ853 6.9365719 0.1283778 54.032 < 2e-16 ***
ORIGIN_SZ854 3.2237110 0.1308010 24.646 < 2e-16 ***
ORIGIN_SZ855 1.8416130 0.1353800 13.603 < 2e-16 ***
ORIGIN_SZ856 3.4683981 0.1296780 26.746 < 2e-16 ***
ORIGIN_SZ866 2.3172711 0.1310822 17.678 < 2e-16 ***
ORIGIN_SZ867 3.1976249 0.1288244 24.822 < 2e-16 ***
ORIGIN_SZ868 2.4882976 0.1294932 19.216 < 2e-16 ***
ORIGIN_SZ869 5.0233449 0.1284450 39.109 < 2e-16 ***
ORIGIN_SZ870 5.9104196 0.1283334 46.055 < 2e-16 ***
ORIGIN_SZ871 5.7459917 0.1284312 44.740 < 2e-16 ***
ORIGIN_SZ872 3.6190123 0.1287687 28.105 < 2e-16 ***
ORIGIN_SZ873 3.8506553 0.1286792 29.924 < 2e-16 ***
ORIGIN_SZ874 4.1234873 0.1285464 32.078 < 2e-16 ***
ORIGIN_SZ875 1.0949378 0.1438786 7.610 2.74e-14 ***
ORIGIN_SZ876 2.2269604 0.1318447 16.891 < 2e-16 ***
ORIGIN_SZ877 1.7867469 0.1341387 13.320 < 2e-16 ***
ORIGIN_SZ887 2.6306026 0.1289823 20.395 < 2e-16 ***
ORIGIN_SZ888 4.1253397 0.1284797 32.109 < 2e-16 ***
ORIGIN_SZ889 1.0535960 0.1320251 7.980 1.46e-15 ***
ORIGIN_SZ890 5.3284587 0.1283518 41.514 < 2e-16 ***
ORIGIN_SZ891 4.0268547 0.1287780 31.270 < 2e-16 ***
ORIGIN_SZ893 5.4681295 0.1283613 42.600 < 2e-16 ***
ORIGIN_SZ894 3.6741126 0.1287171 28.544 < 2e-16 ***
ORIGIN_SZ895 3.1918333 0.1291808 24.708 < 2e-16 ***
ORIGIN_SZ896 1.9784262 0.1315361 15.041 < 2e-16 ***
ORIGIN_SZ897 0.3264987 0.1420392 2.299 0.021525 *
ORIGIN_SZ898 2.5017205 0.1320423 18.946 < 2e-16 ***
ORIGIN_SZ908 4.1028770 0.1288535 31.841 < 2e-16 ***
ORIGIN_SZ909 4.1157508 0.1284197 32.049 < 2e-16 ***
ORIGIN_SZ910 2.1546228 0.1293238 16.661 < 2e-16 ***
ORIGIN_SZ911 3.5439302 0.1285925 27.559 < 2e-16 ***
ORIGIN_SZ912 5.0794681 0.1283673 39.570 < 2e-16 ***
ORIGIN_SZ915 5.3722279 0.1283714 41.849 < 2e-16 ***
ORIGIN_SZ917 4.8669273 0.1285088 37.872 < 2e-16 ***
ORIGIN_SZ918 1.1976582 0.1338619 8.947 < 2e-16 ***
ORIGIN_SZ919 4.1125271 0.1286438 31.968 < 2e-16 ***
ORIGIN_SZ928 3.0455756 0.1289702 23.615 < 2e-16 ***
ORIGIN_SZ929 4.4978222 0.1283770 35.036 < 2e-16 ***
ORIGIN_SZ930 5.3657820 0.1283355 41.811 < 2e-16 ***
ORIGIN_SZ931 2.3162035 0.1293690 17.904 < 2e-16 ***
ORIGIN_SZ932 2.7694625 0.1294770 21.390 < 2e-16 ***
ORIGIN_SZ933 4.9357933 0.1284184 38.435 < 2e-16 ***
ORIGIN_SZ934 2.3306921 0.1296816 17.972 < 2e-16 ***
ORIGIN_SZ935 6.2496853 0.1283348 48.698 < 2e-16 ***
ORIGIN_SZ938 -1.6147369 0.2810424 -5.746 9.16e-09 ***
ORIGIN_SZ939 6.2324982 0.1283674 48.552 < 2e-16 ***
ORIGIN_SZ940 0.4374257 0.1465384 2.985 0.002835 **
ORIGIN_SZ949 2.7913292 0.1289455 21.647 < 2e-16 ***
ORIGIN_SZ950 4.9625752 0.1283901 38.652 < 2e-16 ***
ORIGIN_SZ951 5.8124044 0.1283280 45.293 < 2e-16 ***
ORIGIN_SZ952 2.5331222 0.1298464 19.509 < 2e-16 ***
ORIGIN_SZ953 3.7049359 0.1286368 28.802 < 2e-16 ***
ORIGIN_SZ954 2.5590881 0.1293518 19.784 < 2e-16 ***
ORIGIN_SZ955 4.8206888 0.1284189 37.539 < 2e-16 ***
ORIGIN_SZ956 3.2253869 0.1287870 25.044 < 2e-16 ***
ORIGIN_SZ957 5.3750668 0.1284242 41.854 < 2e-16 ***
ORIGIN_SZ959 1.4277296 0.1368777 10.431 < 2e-16 ***
ORIGIN_SZ961 1.4545836 0.1317928 11.037 < 2e-16 ***
ORIGIN_SZ962 6.7795777 0.1284728 52.771 < 2e-16 ***
ORIGIN_SZ970 3.3200875 0.1285368 25.830 < 2e-16 ***
ORIGIN_SZ971 4.6872948 0.1283546 36.518 < 2e-16 ***
ORIGIN_SZ972 4.5754058 0.1283801 35.640 < 2e-16 ***
ORIGIN_SZ974 4.2151790 0.1284972 32.804 < 2e-16 ***
ORIGIN_SZ975 3.8529613 0.1285929 29.962 < 2e-16 ***
ORIGIN_SZ976 2.5736286 0.1293162 19.902 < 2e-16 ***
ORIGIN_SZ977 5.7393499 0.1283528 44.715 < 2e-16 ***
ORIGIN_SZ978 5.6271784 0.1284820 43.797 < 2e-16 ***
ORIGIN_SZ982 2.5287621 0.1291557 19.579 < 2e-16 ***
ORIGIN_SZ983 7.4453499 0.1283646 58.002 < 2e-16 ***
ORIGIN_SZ984 7.4937210 0.1283984 58.363 < 2e-16 ***
ORIGIN_SZ991 3.3688268 0.1285932 26.198 < 2e-16 ***
ORIGIN_SZ992 3.6566784 0.1284744 28.462 < 2e-16 ***
ORIGIN_SZ993 3.4070732 0.1285045 26.513 < 2e-16 ***
ORIGIN_SZ994 2.9499187 0.1287275 22.916 < 2e-16 ***
ORIGIN_SZ995 4.3993511 0.1284162 34.259 < 2e-16 ***
ORIGIN_SZ996 4.1139306 0.1285169 32.011 < 2e-16 ***
ORIGIN_SZ997 2.8308973 0.1311854 21.579 < 2e-16 ***
ORIGIN_SZ998 5.8555628 0.1283574 45.619 < 2e-16 ***
ORIGIN_SZ999 5.8385828 0.1284204 45.465 < 2e-16 ***
ORIGIN_SZ1001 2.6713211 0.1306592 20.445 < 2e-16 ***
ORIGIN_SZ1003 5.3580592 0.1283740 41.738 < 2e-16 ***
ORIGIN_SZ1004 6.0074265 0.1283503 46.805 < 2e-16 ***
ORIGIN_SZ1011 1.3614625 0.1319247 10.320 < 2e-16 ***
ORIGIN_SZ1012 1.3964150 0.1321703 10.565 < 2e-16 ***
ORIGIN_SZ1013 2.1051864 0.1293209 16.279 < 2e-16 ***
ORIGIN_SZ1014 2.9620901 0.1287294 23.010 < 2e-16 ***
ORIGIN_SZ1015 2.4138370 0.1291886 18.685 < 2e-16 ***
ORIGIN_SZ1016 4.1555792 0.1284861 32.343 < 2e-16 ***
ORIGIN_SZ1018 4.7337897 0.1286573 36.794 < 2e-16 ***
ORIGIN_SZ1019 6.3123786 0.1283874 49.167 < 2e-16 ***
ORIGIN_SZ1023 4.3697894 0.1286306 33.972 < 2e-16 ***
ORIGIN_SZ1024 5.3946861 0.1283850 42.020 < 2e-16 ***
ORIGIN_SZ1025 0.5797077 0.1378446 4.206 2.60e-05 ***
ORIGIN_SZ1033 2.7628241 0.1287715 21.455 < 2e-16 ***
ORIGIN_SZ1034 3.7076914 0.1284935 28.855 < 2e-16 ***
ORIGIN_SZ1035 4.4197167 0.1284092 34.419 < 2e-16 ***
ORIGIN_SZ1036 2.4413074 0.1291227 18.907 < 2e-16 ***
ORIGIN_SZ1037 3.6810703 0.1284912 28.648 < 2e-16 ***
ORIGIN_SZ1043 2.7041178 0.1306722 20.694 < 2e-16 ***
ORIGIN_SZ1045 5.0036359 0.1283827 38.974 < 2e-16 ***
ORIGIN_SZ1046 4.8600249 0.1284019 37.850 < 2e-16 ***
ORIGIN_SZ1053 4.2805812 0.1284235 33.332 < 2e-16 ***
ORIGIN_SZ1054 3.1721677 0.1285584 24.675 < 2e-16 ***
ORIGIN_SZ1055 4.3164605 0.1284015 33.617 < 2e-16 ***
ORIGIN_SZ1056 3.3449664 0.1286159 26.007 < 2e-16 ***
ORIGIN_SZ1064 0.3641541 0.2684429 1.357 0.174927
ORIGIN_SZ1066 4.7807553 0.1284028 37.232 < 2e-16 ***
ORIGIN_SZ1067 5.5362003 0.1284055 43.115 < 2e-16 ***
ORIGIN_SZ1074 3.6129635 0.1285148 28.113 < 2e-16 ***
ORIGIN_SZ1075 2.8313889 0.1287176 21.997 < 2e-16 ***
ORIGIN_SZ1076 3.0018657 0.1285817 23.346 < 2e-16 ***
ORIGIN_SZ1077 3.2299883 0.1286726 25.102 < 2e-16 ***
ORIGIN_SZ1079 4.6158888 0.1284070 35.947 < 2e-16 ***
ORIGIN_SZ1085 -1.6741102 0.2142978 -7.812 5.63e-15 ***
ORIGIN_SZ1087 4.5588996 0.1284355 35.496 < 2e-16 ***
ORIGIN_SZ1088 3.0334034 0.1288400 23.544 < 2e-16 ***
ORIGIN_SZ1094 1.6330476 0.1355237 12.050 < 2e-16 ***
ORIGIN_SZ1095 1.0000862 0.1337777 7.476 7.68e-14 ***
ORIGIN_SZ1096 2.9821904 0.1298896 22.959 < 2e-16 ***
ORIGIN_SZ1097 5.0906615 0.1283501 39.662 < 2e-16 ***
ORIGIN_SZ1098 2.6108029 0.1295066 20.160 < 2e-16 ***
ORIGIN_SZ1099 4.0158899 0.1284725 31.259 < 2e-16 ***
ORIGIN_SZ1105 1.7724246 0.1429485 12.399 < 2e-16 ***
ORIGIN_SZ1106 0.0153603 0.1613298 0.095 0.924147
ORIGIN_SZ1107 2.3455815 0.1314244 17.847 < 2e-16 ***
ORIGIN_SZ1108 6.6047138 0.1283347 51.465 < 2e-16 ***
ORIGIN_SZ1109 3.9159747 0.1285455 30.464 < 2e-16 ***
ORIGIN_SZ1116 3.3236220 0.1285814 25.848 < 2e-16 ***
ORIGIN_SZ1117 1.7078013 0.1298638 13.151 < 2e-16 ***
ORIGIN_SZ1118 2.2710221 0.1295121 17.535 < 2e-16 ***
ORIGIN_SZ1119 3.2002136 0.1286806 24.869 < 2e-16 ***
ORIGIN_SZ1120 3.1584771 0.1289782 24.488 < 2e-16 ***
ORIGIN_SZ1129 5.0437158 0.1283974 39.282 < 2e-16 ***
ORIGIN_SZ1130 5.0856121 0.1283706 39.617 < 2e-16 ***
ORIGIN_SZ1131 4.4503068 0.1285519 34.619 < 2e-16 ***
ORIGIN_SZ1136 2.3574337 0.1290568 18.267 < 2e-16 ***
ORIGIN_SZ1138 0.9244841 0.1329645 6.953 3.58e-12 ***
ORIGIN_SZ1139 4.1524155 0.1284025 32.339 < 2e-16 ***
ORIGIN_SZ1141 4.1071977 0.1284565 31.973 < 2e-16 ***
ORIGIN_SZ1148 1.4188214 0.1384438 10.248 < 2e-16 ***
ORIGIN_SZ1149 2.9120967 0.1295611 22.477 < 2e-16 ***
ORIGIN_SZ1150 5.3044536 0.1283620 41.324 < 2e-16 ***
ORIGIN_SZ1151 4.2082018 0.1284711 32.756 < 2e-16 ***
ORIGIN_SZ1158 2.4313623 0.1287944 18.878 < 2e-16 ***
ORIGIN_SZ1159 3.9526476 0.1284212 30.779 < 2e-16 ***
ORIGIN_SZ1160 5.0104849 0.1283551 39.036 < 2e-16 ***
ORIGIN_SZ1171 5.8886025 0.1283717 45.871 < 2e-16 ***
ORIGIN_SZ1172 5.7411405 0.1283679 44.724 < 2e-16 ***
ORIGIN_SZ1173 2.8533942 0.1289138 22.134 < 2e-16 ***
ORIGIN_SZ1174 -1.6985984 0.2810566 -6.044 1.51e-09 ***
ORIGIN_SZ1178 2.7134960 0.1287189 21.081 < 2e-16 ***
ORIGIN_SZ1179 3.4454647 0.1284786 26.817 < 2e-16 ***
ORIGIN_SZ1180 4.5102659 0.1283724 35.134 < 2e-16 ***
ORIGIN_SZ1181 3.7584689 0.1284648 29.257 < 2e-16 ***
ORIGIN_SZ1183 2.8685027 0.1289376 22.247 < 2e-16 ***
ORIGIN_SZ1190 1.7003948 0.1368713 12.423 < 2e-16 ***
ORIGIN_SZ1192 4.6055665 0.1284622 35.852 < 2e-16 ***
ORIGIN_SZ1193 4.5964427 0.1284207 35.792 < 2e-16 ***
ORIGIN_SZ1194 2.8688838 0.1290323 22.234 < 2e-16 ***
ORIGIN_SZ1200 3.4689356 0.1284773 27.000 < 2e-16 ***
ORIGIN_SZ1201 3.3471765 0.1284958 26.049 < 2e-16 ***
ORIGIN_SZ1203 4.2403472 0.1284332 33.016 < 2e-16 ***
ORIGIN_SZ1204 3.9834418 0.1284700 31.007 < 2e-16 ***
ORIGIN_SZ1211 0.8732171 0.1653877 5.280 1.29e-07 ***
ORIGIN_SZ1214 5.3665337 0.1283778 41.803 < 2e-16 ***
ORIGIN_SZ1215 1.8296668 0.1344457 13.609 < 2e-16 ***
ORIGIN_SZ1216 0.9200164 0.1344061 6.845 7.64e-12 ***
ORIGIN_SZ1220 4.5147297 0.1283703 35.170 < 2e-16 ***
ORIGIN_SZ1221 4.1647047 0.1283842 32.439 < 2e-16 ***
ORIGIN_SZ1222 3.7853159 0.1286620 29.421 < 2e-16 ***
ORIGIN_SZ1223 2.1485159 0.1293868 16.605 < 2e-16 ***
ORIGIN_SZ1224 3.0637462 0.1287171 23.802 < 2e-16 ***
ORIGIN_SZ1231 -0.5785710 0.1931693 -2.995 0.002743 **
ORIGIN_SZ1232 1.6020338 0.1577109 10.158 < 2e-16 ***
ORIGIN_SZ1235 2.8891562 0.1290306 22.391 < 2e-16 ***
ORIGIN_SZ1236 2.6706813 0.1291650 20.677 < 2e-16 ***
ORIGIN_SZ1241 2.6749712 0.1287175 20.782 < 2e-16 ***
ORIGIN_SZ1242 3.3558722 0.1284773 26.120 < 2e-16 ***
ORIGIN_SZ1243 4.0336892 0.1283948 31.416 < 2e-16 ***
ORIGIN_SZ1246 3.2552150 0.1286250 25.308 < 2e-16 ***
ORIGIN_SZ1256 4.2865697 0.1285178 33.354 < 2e-16 ***
ORIGIN_SZ1257 5.1521683 0.1284247 40.118 < 2e-16 ***
ORIGIN_SZ1258 3.1495727 0.1290847 24.399 < 2e-16 ***
ORIGIN_SZ1262 3.0838272 0.1285660 23.986 < 2e-16 ***
ORIGIN_SZ1263 3.6926366 0.1284114 28.756 < 2e-16 ***
ORIGIN_SZ1264 2.6701258 0.1288620 20.721 < 2e-16 ***
ORIGIN_SZ1265 2.4338921 0.1291175 18.850 < 2e-16 ***
ORIGIN_SZ1266 3.8381859 0.1285277 29.863 < 2e-16 ***
ORIGIN_SZ1267 1.9652566 0.1309093 15.012 < 2e-16 ***
ORIGIN_SZ1272 -0.6005707 0.1784891 -3.365 0.000766 ***
ORIGIN_SZ1273 3.7329503 0.1288496 28.971 < 2e-16 ***
ORIGIN_SZ1277 5.3300196 0.1283783 41.518 < 2e-16 ***
ORIGIN_SZ1278 2.7968417 0.1289899 21.683 < 2e-16 ***
ORIGIN_SZ1283 4.9383464 0.1283620 38.472 < 2e-16 ***
ORIGIN_SZ1284 4.0964869 0.1283938 31.906 < 2e-16 ***
ORIGIN_SZ1285 4.8056051 0.1283510 37.441 < 2e-16 ***
ORIGIN_SZ1286 3.0869296 0.1286914 23.987 < 2e-16 ***
ORIGIN_SZ1289 1.3410831 0.1362765 9.841 < 2e-16 ***
ORIGIN_SZ1293 0.3168305 0.1480128 2.141 0.032309 *
ORIGIN_SZ1294 5.1414463 0.1284542 40.026 < 2e-16 ***
ORIGIN_SZ1295 2.6145693 0.1299450 20.121 < 2e-16 ***
ORIGIN_SZ1298 4.3456426 0.1284881 33.821 < 2e-16 ***
ORIGIN_SZ1299 4.5959685 0.1284570 35.778 < 2e-16 ***
ORIGIN_SZ1304 4.7072140 0.1283653 36.670 < 2e-16 ***
ORIGIN_SZ1305 4.1335815 0.1283719 32.200 < 2e-16 ***
ORIGIN_SZ1307 0.7500065 0.1331626 5.632 1.78e-08 ***
ORIGIN_SZ1308 3.9720413 0.1284550 30.922 < 2e-16 ***
ORIGIN_SZ1310 -0.7703709 0.2141972 -3.597 0.000322 ***
ORIGIN_SZ1316 1.5467810 0.1329477 11.635 < 2e-16 ***
ORIGIN_SZ1317 3.3278269 0.1288029 25.837 < 2e-16 ***
ORIGIN_SZ1318 2.6193558 0.1292355 20.268 < 2e-16 ***
ORIGIN_SZ1319 5.5800661 0.1283719 43.468 < 2e-16 ***
ORIGIN_SZ1320 4.0232570 0.1286368 31.276 < 2e-16 ***
ORIGIN_SZ1325 2.3380308 0.1288702 18.143 < 2e-16 ***
ORIGIN_SZ1326 4.3044463 0.1283701 33.532 < 2e-16 ***
ORIGIN_SZ1327 4.1268654 0.1283838 32.145 < 2e-16 ***
ORIGIN_SZ1328 2.7620098 0.1286476 21.470 < 2e-16 ***
ORIGIN_SZ1329 3.0506402 0.1288063 23.684 < 2e-16 ***
ORIGIN_SZ1330 3.8621532 0.1285638 30.041 < 2e-16 ***
ORIGIN_SZ1331 -1.2440279 0.2810167 -4.427 9.56e-06 ***
ORIGIN_SZ1333 3.2282984 0.1288720 25.050 < 2e-16 ***
ORIGIN_SZ1334 3.5087803 0.1287888 27.244 < 2e-16 ***
ORIGIN_SZ1335 3.0465284 0.1293834 23.547 < 2e-16 ***
ORIGIN_SZ1336 0.3602739 0.1726290 2.087 0.036890 *
ORIGIN_SZ1337 0.6865751 0.1381481 4.970 6.70e-07 ***
ORIGIN_SZ1338 -0.7332450 0.1603972 -4.571 4.84e-06 ***
ORIGIN_SZ1339 5.4952331 0.1283654 42.809 < 2e-16 ***
ORIGIN_SZ1340 3.8240135 0.1286071 29.734 < 2e-16 ***
ORIGIN_SZ1341 -0.1184385 0.2411330 -0.491 0.623303
ORIGIN_SZ1346 3.9045805 0.1284569 30.396 < 2e-16 ***
ORIGIN_SZ1347 4.9832894 0.1283510 38.825 < 2e-16 ***
ORIGIN_SZ1348 3.3585153 0.1284571 26.145 < 2e-16 ***
ORIGIN_SZ1349 3.1967346 0.1285549 24.867 < 2e-16 ***
ORIGIN_SZ1350 3.4336485 0.1287568 26.668 < 2e-16 ***
ORIGIN_SZ1353 3.5775524 0.1285755 27.825 < 2e-16 ***
ORIGIN_SZ1354 2.9970965 0.1289125 23.249 < 2e-16 ***
ORIGIN_SZ1355 3.8129551 0.1285760 29.655 < 2e-16 ***
ORIGIN_SZ1357 2.8838085 0.1296157 22.249 < 2e-16 ***
ORIGIN_SZ1358 4.2012475 0.1285152 32.691 < 2e-16 ***
ORIGIN_SZ1359 4.5175512 0.1284159 35.179 < 2e-16 ***
ORIGIN_SZ1360 4.5560472 0.1284234 35.477 < 2e-16 ***
ORIGIN_SZ1361 5.7082420 0.1283801 44.464 < 2e-16 ***
ORIGIN_SZ1362 1.8192252 0.1342208 13.554 < 2e-16 ***
ORIGIN_SZ1368 2.7645533 0.1285896 21.499 < 2e-16 ***
ORIGIN_SZ1369 2.6027035 0.1286049 20.238 < 2e-16 ***
ORIGIN_SZ1370 3.8036915 0.1284010 29.624 < 2e-16 ***
ORIGIN_SZ1371 3.1576240 0.1286811 24.538 < 2e-16 ***
ORIGIN_SZ1372 2.4538287 0.1289224 19.033 < 2e-16 ***
ORIGIN_SZ1373 0.6333383 0.1364235 4.642 3.44e-06 ***
ORIGIN_SZ1374 2.7384886 0.1288234 21.258 < 2e-16 ***
ORIGIN_SZ1375 4.2928205 0.1285257 33.400 < 2e-16 ***
ORIGIN_SZ1376 3.5917491 0.1289104 27.862 < 2e-16 ***
ORIGIN_SZ1379 1.7826380 0.1328203 13.421 < 2e-16 ***
ORIGIN_SZ1380 5.9283182 0.1283474 46.190 < 2e-16 ***
ORIGIN_SZ1381 5.4882843 0.1283667 42.755 < 2e-16 ***
ORIGIN_SZ1382 4.9117358 0.1284613 38.235 < 2e-16 ***
ORIGIN_SZ1383 2.5047943 0.1306096 19.178 < 2e-16 ***
ORIGIN_SZ1388 3.4254679 0.1284633 26.665 < 2e-16 ***
ORIGIN_SZ1389 2.4876666 0.1286256 19.340 < 2e-16 ***
ORIGIN_SZ1390 3.3067639 0.1284756 25.738 < 2e-16 ***
ORIGIN_SZ1391 3.2746314 0.1285167 25.480 < 2e-16 ***
ORIGIN_SZ1392 2.8425458 0.1293811 21.970 < 2e-16 ***
ORIGIN_SZ1393 2.0483419 0.1291043 15.866 < 2e-16 ***
ORIGIN_SZ1394 3.8051463 0.1284633 29.620 < 2e-16 ***
ORIGIN_SZ1395 3.5510811 0.1285136 27.632 < 2e-16 ***
ORIGIN_SZ1396 4.6180112 0.1284032 35.965 < 2e-16 ***
ORIGIN_SZ1397 4.6804762 0.1284120 36.449 < 2e-16 ***
ORIGIN_SZ1398 3.6425787 0.1287543 28.291 < 2e-16 ***
ORIGIN_SZ1400 4.6759075 0.1284756 36.395 < 2e-16 ***
ORIGIN_SZ1401 5.0477274 0.1283715 39.321 < 2e-16 ***
ORIGIN_SZ1402 5.1011623 0.1283864 39.733 < 2e-16 ***
ORIGIN_SZ1404 5.1579558 0.1291829 39.928 < 2e-16 ***
ORIGIN_SZ1410 4.0420432 0.1283783 31.485 < 2e-16 ***
ORIGIN_SZ1411 2.9443932 0.1285443 22.906 < 2e-16 ***
ORIGIN_SZ1412 3.2692589 0.1284557 25.450 < 2e-16 ***
ORIGIN_SZ1413 4.0506420 0.1284059 31.546 < 2e-16 ***
ORIGIN_SZ1414 3.4833687 0.1284556 27.117 < 2e-16 ***
ORIGIN_SZ1415 2.9922201 0.1286207 23.264 < 2e-16 ***
ORIGIN_SZ1416 3.6221805 0.1284861 28.191 < 2e-16 ***
ORIGIN_SZ1417 3.7745313 0.1284677 29.381 < 2e-16 ***
ORIGIN_SZ1418 4.5713200 0.1283965 35.603 < 2e-16 ***
ORIGIN_SZ1419 4.0776729 0.1284703 31.740 < 2e-16 ***
ORIGIN_SZ1422 5.1072716 0.1284094 39.773 < 2e-16 ***
ORIGIN_SZ1423 6.0174788 0.1283608 46.879 < 2e-16 ***
ORIGIN_SZ1430 3.7176173 0.1284346 28.946 < 2e-16 ***
ORIGIN_SZ1431 3.7837295 0.1283933 29.470 < 2e-16 ***
ORIGIN_SZ1432 3.8109774 0.1283933 29.682 < 2e-16 ***
ORIGIN_SZ1433 2.5503882 0.1292669 19.730 < 2e-16 ***
ORIGIN_SZ1434 4.0586775 0.1284137 31.606 < 2e-16 ***
ORIGIN_SZ1435 4.4171474 0.1283683 34.410 < 2e-16 ***
ORIGIN_SZ1436 1.3014336 0.1303414 9.985 < 2e-16 ***
ORIGIN_SZ1437 4.5953172 0.1283794 35.795 < 2e-16 ***
ORIGIN_SZ1438 5.0522959 0.1283502 39.363 < 2e-16 ***
ORIGIN_SZ1439 5.6837551 0.1283414 44.286 < 2e-16 ***
ORIGIN_SZ1440 2.1137319 0.1298160 16.283 < 2e-16 ***
ORIGIN_SZ1442 4.9311239 0.1284811 38.380 < 2e-16 ***
ORIGIN_SZ1443 6.0037112 0.1283659 46.770 < 2e-16 ***
ORIGIN_SZ1444 5.0405899 0.1285228 39.219 < 2e-16 ***
ORIGIN_SZ1452 2.8355710 0.1285343 22.061 < 2e-16 ***
ORIGIN_SZ1453 3.0191038 0.1285082 23.493 < 2e-16 ***
ORIGIN_SZ1454 2.0338914 0.1295590 15.699 < 2e-16 ***
ORIGIN_SZ1455 3.3886706 0.1285616 26.358 < 2e-16 ***
ORIGIN_SZ1456 3.8310384 0.1284343 29.829 < 2e-16 ***
ORIGIN_SZ1457 4.6346391 0.1283695 36.104 < 2e-16 ***
ORIGIN_SZ1458 4.9957835 0.1283567 38.921 < 2e-16 ***
ORIGIN_SZ1459 4.4130417 0.1283861 34.373 < 2e-16 ***
ORIGIN_SZ1460 3.6434791 0.1284600 28.363 < 2e-16 ***
ORIGIN_SZ1461 2.3045877 0.1293119 17.822 < 2e-16 ***
ORIGIN_SZ1464 6.3897458 0.1283588 49.780 < 2e-16 ***
ORIGIN_SZ1465 5.8661209 0.1283977 45.687 < 2e-16 ***
ORIGIN_SZ1472 1.3939828 0.1297329 10.745 < 2e-16 ***
ORIGIN_SZ1473 2.4448601 0.1286541 19.003 < 2e-16 ***
ORIGIN_SZ1474 3.5730525 0.1284087 27.826 < 2e-16 ***
ORIGIN_SZ1475 4.4491102 0.1283738 34.657 < 2e-16 ***
ORIGIN_SZ1476 3.8272335 0.1284468 29.796 < 2e-16 ***
ORIGIN_SZ1477 5.3285635 0.1283352 41.521 < 2e-16 ***
ORIGIN_SZ1478 3.6039267 0.1284577 28.055 < 2e-16 ***
ORIGIN_SZ1479 3.8448908 0.1284294 29.938 < 2e-16 ***
ORIGIN_SZ1480 5.6525484 0.1283348 44.045 < 2e-16 ***
ORIGIN_SZ1481 2.9830024 0.1286726 23.183 < 2e-16 ***
ORIGIN_SZ1482 3.2109390 0.1289469 24.901 < 2e-16 ***
ORIGIN_SZ1485 5.8356487 0.1284019 45.448 < 2e-16 ***
ORIGIN_SZ1494 2.6615197 0.1288441 20.657 < 2e-16 ***
ORIGIN_SZ1495 2.8544767 0.1285226 22.210 < 2e-16 ***
ORIGIN_SZ1496 3.9820085 0.1283819 31.017 < 2e-16 ***
ORIGIN_SZ1497 4.2639611 0.1284014 33.208 < 2e-16 ***
ORIGIN_SZ1498 4.5908749 0.1283666 35.764 < 2e-16 ***
ORIGIN_SZ1499 4.8132685 0.1283545 37.500 < 2e-16 ***
ORIGIN_SZ1500 4.6822831 0.1284116 36.463 < 2e-16 ***
ORIGIN_SZ1501 4.9692036 0.1283562 38.714 < 2e-16 ***
ORIGIN_SZ1502 4.4058222 0.1283888 34.316 < 2e-16 ***
ORIGIN_SZ1506 0.5179581 0.1570543 3.298 0.000974 ***
ORIGIN_SZ1515 1.7290382 0.1298954 13.311 < 2e-16 ***
ORIGIN_SZ1516 3.3466520 0.1284607 26.052 < 2e-16 ***
ORIGIN_SZ1517 3.6509048 0.1284673 28.419 < 2e-16 ***
ORIGIN_SZ1518 3.5568481 0.1284967 27.680 < 2e-16 ***
ORIGIN_SZ1519 4.8299234 0.1283913 37.619 < 2e-16 ***
ORIGIN_SZ1520 4.2751225 0.1283941 33.297 < 2e-16 ***
ORIGIN_SZ1521 2.7894687 0.1287420 21.667 < 2e-16 ***
ORIGIN_SZ1522 5.1661426 0.1283506 40.250 < 2e-16 ***
ORIGIN_SZ1523 3.7864551 0.1291094 29.327 < 2e-16 ***
ORIGIN_SZ1524 3.8500073 0.1286372 29.929 < 2e-16 ***
ORIGIN_SZ1527 3.7673049 0.1292927 29.138 < 2e-16 ***
ORIGIN_SZ1535 0.3888724 0.1550492 2.508 0.012140 *
ORIGIN_SZ1536 1.1053648 0.1318190 8.385 < 2e-16 ***
ORIGIN_SZ1537 1.8835853 0.1293558 14.561 < 2e-16 ***
ORIGIN_SZ1538 3.4387325 0.1284423 26.773 < 2e-16 ***
ORIGIN_SZ1539 3.9563792 0.1283960 30.814 < 2e-16 ***
ORIGIN_SZ1540 4.4721293 0.1283723 34.837 < 2e-16 ***
ORIGIN_SZ1541 5.7156003 0.1283961 44.515 < 2e-16 ***
ORIGIN_SZ1542 2.6724609 0.1290771 20.704 < 2e-16 ***
ORIGIN_SZ1543 3.4434117 0.1299502 26.498 < 2e-16 ***
ORIGIN_SZ1544 4.4318328 0.1284575 34.500 < 2e-16 ***
ORIGIN_SZ1547 1.3944409 0.1408842 9.898 < 2e-16 ***
ORIGIN_SZ1556 0.9903462 0.1420249 6.973 3.10e-12 ***
ORIGIN_SZ1557 1.1190759 0.1323181 8.457 < 2e-16 ***
ORIGIN_SZ1558 2.4026456 0.1294496 18.560 < 2e-16 ***
ORIGIN_SZ1559 4.1062899 0.1283844 31.984 < 2e-16 ***
ORIGIN_SZ1560 4.9133558 0.1283512 38.281 < 2e-16 ***
ORIGIN_SZ1561 4.7433747 0.1283807 36.948 < 2e-16 ***
ORIGIN_SZ1562 1.7916994 0.1297135 13.813 < 2e-16 ***
ORIGIN_SZ1563 3.6182330 0.1284897 28.160 < 2e-16 ***
ORIGIN_SZ1564 2.7474915 0.1289386 21.309 < 2e-16 ***
ORIGIN_SZ1565 2.8419407 0.1289732 22.035 < 2e-16 ***
ORIGIN_SZ1566 2.6220128 0.1296302 20.227 < 2e-16 ***
ORIGIN_SZ1567 0.4189659 0.1552622 2.698 0.006967 **
ORIGIN_SZ1568 1.4806010 0.1416837 10.450 < 2e-16 ***
ORIGIN_SZ1578 -1.3398701 0.2815434 -4.759 1.95e-06 ***
ORIGIN_SZ1580 2.5802806 0.1291851 19.974 < 2e-16 ***
ORIGIN_SZ1581 1.3677498 0.1296889 10.546 < 2e-16 ***
ORIGIN_SZ1582 4.6045623 0.1283575 35.873 < 2e-16 ***
ORIGIN_SZ1583 2.8642254 0.1297258 22.079 < 2e-16 ***
ORIGIN_SZ1584 3.1251714 0.1286746 24.287 < 2e-16 ***
ORIGIN_SZ1585 3.8128714 0.1285971 29.650 < 2e-16 ***
ORIGIN_SZ1586 2.6711806 0.1289518 20.715 < 2e-16 ***
ORIGIN_SZ1589 1.7206351 0.1334863 12.890 < 2e-16 ***
ORIGIN_SZ1590 1.2315089 0.1435987 8.576 < 2e-16 ***
ORIGIN_SZ1600 4.7154141 0.1286556 36.651 < 2e-16 ***
ORIGIN_SZ1601 3.1966313 0.1285004 24.876 < 2e-16 ***
ORIGIN_SZ1602 3.8706844 0.1284335 30.138 < 2e-16 ***
ORIGIN_SZ1603 4.8145991 0.1283601 37.509 < 2e-16 ***
ORIGIN_SZ1604 3.2985528 0.1285190 25.666 < 2e-16 ***
ORIGIN_SZ1605 4.6900271 0.1283685 36.536 < 2e-16 ***
ORIGIN_SZ1606 4.2115271 0.1286096 32.747 < 2e-16 ***
ORIGIN_SZ1607 3.4365748 0.1286286 26.717 < 2e-16 ***
ORIGIN_SZ1608 5.4794962 0.1283774 42.683 < 2e-16 ***
ORIGIN_SZ1609 5.3707537 0.1284173 41.823 < 2e-16 ***
ORIGIN_SZ1610 1.8098403 0.1416268 12.779 < 2e-16 ***
ORIGIN_SZ1622 3.2746454 0.1298294 25.223 < 2e-16 ***
ORIGIN_SZ1623 4.5686096 0.1283625 35.591 < 2e-16 ***
ORIGIN_SZ1624 3.3451251 0.1285342 26.025 < 2e-16 ***
ORIGIN_SZ1625 4.7448807 0.1283786 36.960 < 2e-16 ***
ORIGIN_SZ1626 5.4031403 0.1283445 42.099 < 2e-16 ***
ORIGIN_SZ1627 3.7636640 0.1284854 29.293 < 2e-16 ***
ORIGIN_SZ1628 5.5191293 0.1283478 43.001 < 2e-16 ***
ORIGIN_SZ1629 4.4870676 0.1284694 34.927 < 2e-16 ***
ORIGIN_SZ1630 4.5796065 0.1285216 35.633 < 2e-16 ***
ORIGIN_SZ1631 1.1315331 0.1389935 8.141 3.92e-16 ***
ORIGIN_SZ1642 2.1664333 0.1309212 16.548 < 2e-16 ***
ORIGIN_SZ1643 4.5066494 0.1283725 35.106 < 2e-16 ***
ORIGIN_SZ1644 2.2746032 0.1292608 17.597 < 2e-16 ***
ORIGIN_SZ1645 3.7832826 0.1284349 29.457 < 2e-16 ***
ORIGIN_SZ1646 3.5931982 0.1285792 27.945 < 2e-16 ***
ORIGIN_SZ1647 3.9788139 0.1284222 30.982 < 2e-16 ***
ORIGIN_SZ1648 4.5988103 0.1283876 35.820 < 2e-16 ***
ORIGIN_SZ1649 5.3718355 0.1283546 41.852 < 2e-16 ***
ORIGIN_SZ1650 5.4873773 0.1284050 42.735 < 2e-16 ***
ORIGIN_SZ1664 -0.5466103 0.1813269 -3.015 0.002574 **
ORIGIN_SZ1665 4.6877073 0.1283604 36.520 < 2e-16 ***
ORIGIN_SZ1666 3.4062823 0.1284771 26.513 < 2e-16 ***
ORIGIN_SZ1667 4.4232882 0.1286615 34.379 < 2e-16 ***
ORIGIN_SZ1668 4.5318630 0.1283819 35.300 < 2e-16 ***
ORIGIN_SZ1670 5.4088882 0.1283477 42.142 < 2e-16 ***
ORIGIN_SZ1671 6.0838254 0.1284023 47.381 < 2e-16 ***
ORIGIN_SZ1672 5.7049441 0.1284293 44.421 < 2e-16 ***
ORIGIN_SZ1684 3.7187181 0.1288702 28.856 < 2e-16 ***
ORIGIN_SZ1685 4.2555448 0.1284035 33.142 < 2e-16 ***
ORIGIN_SZ1686 4.1437766 0.1284031 32.272 < 2e-16 ***
ORIGIN_SZ1687 3.6993537 0.1285034 28.788 < 2e-16 ***
ORIGIN_SZ1688 3.2422176 0.1285630 25.219 < 2e-16 ***
ORIGIN_SZ1689 2.8871351 0.1288455 22.408 < 2e-16 ***
ORIGIN_SZ1690 4.2769664 0.1284599 33.294 < 2e-16 ***
ORIGIN_SZ1691 5.0966925 0.1283750 39.702 < 2e-16 ***
ORIGIN_SZ1692 4.6944612 0.1285417 36.521 < 2e-16 ***
ORIGIN_SZ1706 4.2405145 0.1284411 33.015 < 2e-16 ***
ORIGIN_SZ1707 4.1267925 0.1283945 32.141 < 2e-16 ***
ORIGIN_SZ1708 4.6515595 0.1283637 36.237 < 2e-16 ***
ORIGIN_SZ1709 3.7700021 0.1284598 29.348 < 2e-16 ***
ORIGIN_SZ1710 4.9670420 0.1283684 38.694 < 2e-16 ***
ORIGIN_SZ1711 4.7983231 0.1283920 37.372 < 2e-16 ***
ORIGIN_SZ1712 5.4136434 0.1283471 42.180 < 2e-16 ***
ORIGIN_SZ1713 3.0125277 0.1288959 23.372 < 2e-16 ***
ORIGIN_SZ1714 5.6442978 0.1283871 43.963 < 2e-16 ***
ORIGIN_SZ1727 4.4574547 0.1284012 34.715 < 2e-16 ***
ORIGIN_SZ1728 4.3351186 0.1283855 33.766 < 2e-16 ***
ORIGIN_SZ1729 3.7785773 0.1284218 29.423 < 2e-16 ***
ORIGIN_SZ1730 1.7369592 0.1300694 13.354 < 2e-16 ***
ORIGIN_SZ1731 4.6338734 0.1283936 36.091 < 2e-16 ***
ORIGIN_SZ1732 5.0905241 0.1283553 39.660 < 2e-16 ***
ORIGIN_SZ1733 4.8477092 0.1283778 37.761 < 2e-16 ***
ORIGIN_SZ1734 5.2568117 0.1283742 40.949 < 2e-16 ***
ORIGIN_SZ1735 6.9689832 0.1284616 54.250 < 2e-16 ***
ORIGIN_SZ1748 3.1734114 0.1286335 24.670 < 2e-16 ***
ORIGIN_SZ1749 4.1468003 0.1283953 32.297 < 2e-16 ***
ORIGIN_SZ1750 3.2613612 0.1284986 25.381 < 2e-16 ***
ORIGIN_SZ1751 2.5480666 0.1287617 19.789 < 2e-16 ***
ORIGIN_SZ1753 5.1283339 0.1283607 39.953 < 2e-16 ***
ORIGIN_SZ1754 5.5104972 0.1283459 42.935 < 2e-16 ***
ORIGIN_SZ1755 5.0221300 0.1283760 39.120 < 2e-16 ***
ORIGIN_SZ1756 4.9811190 0.1284102 38.791 < 2e-16 ***
ORIGIN_SZ1757 2.9497619 0.1319618 22.353 < 2e-16 ***
ORIGIN_SZ1769 3.9626587 0.1284323 30.854 < 2e-16 ***
ORIGIN_SZ1770 3.9969946 0.1285514 31.093 < 2e-16 ***
ORIGIN_SZ1771 2.7783443 0.1286934 21.589 < 2e-16 ***
ORIGIN_SZ1772 1.6643605 0.1304154 12.762 < 2e-16 ***
ORIGIN_SZ1774 4.8462943 0.1283722 37.752 < 2e-16 ***
ORIGIN_SZ1775 4.5115076 0.1284142 35.132 < 2e-16 ***
ORIGIN_SZ1776 5.7008216 0.1283497 44.416 < 2e-16 ***
ORIGIN_SZ1777 5.7202295 0.1283656 44.562 < 2e-16 ***
ORIGIN_SZ1778 5.5268171 0.1288405 42.897 < 2e-16 ***
ORIGIN_SZ1790 4.6407250 0.1283929 36.145 < 2e-16 ***
ORIGIN_SZ1791 4.0003425 0.1284480 31.144 < 2e-16 ***
ORIGIN_SZ1792 3.9251321 0.1284655 30.554 < 2e-16 ***
ORIGIN_SZ1793 2.0307331 0.1289694 15.746 < 2e-16 ***
ORIGIN_SZ1794 1.7992380 0.1310605 13.728 < 2e-16 ***
ORIGIN_SZ1795 1.3069606 0.1322365 9.884 < 2e-16 ***
ORIGIN_SZ1796 5.3162956 0.1283742 41.412 < 2e-16 ***
ORIGIN_SZ1797 5.3447045 0.1283626 41.638 < 2e-16 ***
ORIGIN_SZ1798 5.3785600 0.1283640 41.901 < 2e-16 ***
ORIGIN_SZ1799 4.6072423 0.1285228 35.848 < 2e-16 ***
ORIGIN_SZ1800 3.9498043 0.1308451 30.187 < 2e-16 ***
ORIGIN_SZ1811 3.7138890 0.1284970 28.903 < 2e-16 ***
ORIGIN_SZ1812 4.8789898 0.1283529 38.012 < 2e-16 ***
ORIGIN_SZ1813 4.6561018 0.1283626 36.273 < 2e-16 ***
ORIGIN_SZ1817 5.4056473 0.1283943 42.102 < 2e-16 ***
ORIGIN_SZ1818 5.1927141 0.1283798 40.448 < 2e-16 ***
ORIGIN_SZ1819 5.7273655 0.1283578 44.620 < 2e-16 ***
ORIGIN_SZ1820 2.8647670 0.1327721 21.577 < 2e-16 ***
ORIGIN_SZ1832 4.5074899 0.1284059 35.103 < 2e-16 ***
ORIGIN_SZ1833 3.9377954 0.1284330 30.660 < 2e-16 ***
ORIGIN_SZ1834 4.2644257 0.1283825 33.217 < 2e-16 ***
ORIGIN_SZ1835 3.5659499 0.1285070 27.749 < 2e-16 ***
ORIGIN_SZ1837 0.7690953 0.1419186 5.419 5.98e-08 ***
ORIGIN_SZ1839 4.6358637 0.1284983 36.077 < 2e-16 ***
ORIGIN_SZ1840 6.4716119 0.1283366 50.427 < 2e-16 ***
ORIGIN_SZ1841 2.2983709 0.1330375 17.276 < 2e-16 ***
ORIGIN_SZ1842 6.4694885 0.1287331 50.255 < 2e-16 ***
ORIGIN_SZ1853 4.3256678 0.1283955 33.690 < 2e-16 ***
ORIGIN_SZ1854 4.5606620 0.1283856 35.523 < 2e-16 ***
ORIGIN_SZ1855 4.8503696 0.1283699 37.784 < 2e-16 ***
ORIGIN_SZ1858 2.6470639 0.1307361 20.247 < 2e-16 ***
ORIGIN_SZ1860 5.9892312 0.1285733 46.582 < 2e-16 ***
ORIGIN_SZ1861 5.4449058 0.1283857 42.411 < 2e-16 ***
ORIGIN_SZ1874 4.5098276 0.1284380 35.113 < 2e-16 ***
ORIGIN_SZ1875 2.8330493 0.1289053 21.978 < 2e-16 ***
ORIGIN_SZ1876 4.9442722 0.1287017 38.417 < 2e-16 ***
ORIGIN_SZ1877 4.5626564 0.1283895 35.538 < 2e-16 ***
ORIGIN_SZ1880 0.9829313 0.1365106 7.200 6.00e-13 ***
ORIGIN_SZ1882 5.2992540 0.1283965 41.273 < 2e-16 ***
ORIGIN_SZ1883 5.8024625 0.1285970 45.121 < 2e-16 ***
ORIGIN_SZ1895 4.6351599 0.1283881 36.103 < 2e-16 ***
ORIGIN_SZ1896 2.9955843 0.1286416 23.286 < 2e-16 ***
ORIGIN_SZ1897 3.6604153 0.1285855 28.467 < 2e-16 ***
ORIGIN_SZ1898 -0.6599083 0.1778219 -3.711 0.000206 ***
ORIGIN_SZ1901 0.7749620 0.1467246 5.282 1.28e-07 ***
ORIGIN_SZ1903 5.1887292 0.1285909 40.351 < 2e-16 ***
ORIGIN_SZ1917 3.2192269 0.1286185 25.029 < 2e-16 ***
ORIGIN_SZ1918 4.6602616 0.1284272 36.287 < 2e-16 ***
ORIGIN_SZ1919 4.5380961 0.1284026 35.343 < 2e-16 ***
ORIGIN_SZ1922 2.3087644 0.1312319 17.593 < 2e-16 ***
ORIGIN_SZ1924 5.0214296 0.1286230 39.040 < 2e-16 ***
ORIGIN_SZ1937 4.0309239 0.1284751 31.375 < 2e-16 ***
ORIGIN_SZ1938 4.6755113 0.1283771 36.420 < 2e-16 ***
ORIGIN_SZ1939 5.2285909 0.1283681 40.731 < 2e-16 ***
ORIGIN_SZ1942 1.2796556 0.1345281 9.512 < 2e-16 ***
ORIGIN_SZ1959 3.6051332 0.1285704 28.040 < 2e-16 ***
ORIGIN_SZ1960 5.5903041 0.1283372 43.559 < 2e-16 ***
ORIGIN_SZ1961 3.9886969 0.1284784 31.046 < 2e-16 ***
ORIGIN_SZ1962 5.0143993 0.1283745 39.061 < 2e-16 ***
ORIGIN_SZ1964 0.2513609 0.1525944 1.647 0.099507 .
ORIGIN_SZ1979 3.9080186 0.1285324 30.405 < 2e-16 ***
ORIGIN_SZ1980 2.1544333 0.1290272 16.698 < 2e-16 ***
ORIGIN_SZ1981 4.6365812 0.1283758 36.117 < 2e-16 ***
ORIGIN_SZ1982 3.4508601 0.1287496 26.803 < 2e-16 ***
ORIGIN_SZ1983 4.9242564 0.1283778 38.358 < 2e-16 ***
ORIGIN_SZ1984 3.6431087 0.1285296 28.345 < 2e-16 ***
ORIGIN_SZ1985 4.4345906 0.1284509 34.524 < 2e-16 ***
ORIGIN_SZ2001 4.2184167 0.1284302 32.846 < 2e-16 ***
ORIGIN_SZ2002 4.7630499 0.1283596 37.107 < 2e-16 ***
ORIGIN_SZ2003 4.3973471 0.1283983 34.248 < 2e-16 ***
ORIGIN_SZ2004 5.0199149 0.1283720 39.104 < 2e-16 ***
ORIGIN_SZ2005 4.8956048 0.1283712 38.136 < 2e-16 ***
ORIGIN_SZ2006 3.4575991 0.1286229 26.882 < 2e-16 ***
ORIGIN_SZ2007 2.8498303 0.1292845 22.043 < 2e-16 ***
ORIGIN_SZ2022 4.5952513 0.1284300 35.780 < 2e-16 ***
ORIGIN_SZ2023 5.0117105 0.1283577 39.045 < 2e-16 ***
ORIGIN_SZ2024 4.3242920 0.1283898 33.681 < 2e-16 ***
ORIGIN_SZ2025 4.3546802 0.1283861 33.919 < 2e-16 ***
ORIGIN_SZ2026 3.0208249 0.1287979 23.454 < 2e-16 ***
ORIGIN_SZ2027 5.3158698 0.1283666 41.412 < 2e-16 ***
ORIGIN_SZ2043 3.9075284 0.1285194 30.404 < 2e-16 ***
ORIGIN_SZ2044 4.6274993 0.1283729 36.047 < 2e-16 ***
ORIGIN_SZ2045 0.3537318 0.1435921 2.463 0.013761 *
ORIGIN_SZ2046 4.5807504 0.1283630 35.686 < 2e-16 ***
ORIGIN_SZ2047 4.3432419 0.1284089 33.824 < 2e-16 ***
ORIGIN_SZ2048 4.6367218 0.1283862 36.115 < 2e-16 ***
ORIGIN_SZ2049 3.7174760 0.1289577 28.827 < 2e-16 ***
ORIGIN_SZ2064 4.5752841 0.1283961 35.634 < 2e-16 ***
ORIGIN_SZ2065 3.0666127 0.1285674 23.852 < 2e-16 ***
ORIGIN_SZ2066 2.4252096 0.1303253 18.609 < 2e-16 ***
ORIGIN_SZ2067 5.8329188 0.1283346 45.451 < 2e-16 ***
ORIGIN_SZ2068 4.1693543 0.1284817 32.451 < 2e-16 ***
ORIGIN_SZ2069 4.5189874 0.1284176 35.190 < 2e-16 ***
ORIGIN_SZ2085 3.4872368 0.1286312 27.110 < 2e-16 ***
ORIGIN_SZ2086 4.9165833 0.1283673 38.301 < 2e-16 ***
ORIGIN_SZ2087 3.5650820 0.1284901 27.746 < 2e-16 ***
ORIGIN_SZ2088 4.2418364 0.1283844 33.040 < 2e-16 ***
ORIGIN_SZ2089 3.9807971 0.1284591 30.989 < 2e-16 ***
ORIGIN_SZ2090 5.5293310 0.1283511 43.080 < 2e-16 ***
ORIGIN_SZ2091 0.9136463 0.1430196 6.388 1.68e-10 ***
ORIGIN_SZ2105 1.6527954 0.1617990 10.215 < 2e-16 ***
ORIGIN_SZ2106 1.8173872 0.1296309 14.020 < 2e-16 ***
ORIGIN_SZ2107 3.0072150 0.1285965 23.385 < 2e-16 ***
ORIGIN_SZ2108 4.2092619 0.1284188 32.778 < 2e-16 ***
ORIGIN_SZ2109 4.2850041 0.1283829 33.377 < 2e-16 ***
ORIGIN_SZ2110 3.7216005 0.1285029 28.961 < 2e-16 ***
ORIGIN_SZ2111 1.1562654 0.1339491 8.632 < 2e-16 ***
ORIGIN_SZ2128 2.6600982 0.1290106 20.619 < 2e-16 ***
ORIGIN_SZ2129 2.0823288 0.1291362 16.125 < 2e-16 ***
ORIGIN_SZ2130 4.7533655 0.1283628 37.031 < 2e-16 ***
ORIGIN_SZ2131 5.0766995 0.1283819 39.544 < 2e-16 ***
ORIGIN_SZ2132 4.0403178 0.1284398 31.457 < 2e-16 ***
ORIGIN_SZ2148 3.5612816 0.1287767 27.655 < 2e-16 ***
ORIGIN_SZ2149 2.1561798 0.1291392 16.697 < 2e-16 ***
ORIGIN_SZ2150 4.6576297 0.1283840 36.279 < 2e-16 ***
ORIGIN_SZ2151 5.1132952 0.1283533 39.838 < 2e-16 ***
ORIGIN_SZ2152 5.3033728 0.1283595 41.317 < 2e-16 ***
ORIGIN_SZ2153 4.6356684 0.1284211 36.097 < 2e-16 ***
ORIGIN_SZ2171 3.6332254 0.1284957 28.275 < 2e-16 ***
ORIGIN_SZ2172 3.7323010 0.1285285 29.039 < 2e-16 ***
ORIGIN_SZ2173 4.2773750 0.1284030 33.312 < 2e-16 ***
ORIGIN_SZ2174 4.5619158 0.1284115 35.526 < 2e-16 ***
ORIGIN_SZ2191 3.1114873 0.1287109 24.174 < 2e-16 ***
ORIGIN_SZ2192 3.0217062 0.1287488 23.470 < 2e-16 ***
ORIGIN_SZ2193 3.9655386 0.1284480 30.873 < 2e-16 ***
ORIGIN_SZ2194 4.4091324 0.1284040 34.338 < 2e-16 ***
ORIGIN_SZ2195 3.7733700 0.1298799 29.053 < 2e-16 ***
ORIGIN_SZ2212 0.8098237 0.1525904 5.307 1.11e-07 ***
ORIGIN_SZ2213 1.0782767 0.1333223 8.088 6.08e-16 ***
ORIGIN_SZ2214 1.4668123 0.1310108 11.196 < 2e-16 ***
ORIGIN_SZ2215 4.0983377 0.1284767 31.899 < 2e-16 ***
ORIGIN_SZ2216 3.0542160 0.1287556 23.721 < 2e-16 ***
ORIGIN_SZ2233 1.0944048 0.1356535 8.068 7.17e-16 ***
ORIGIN_SZ2234 2.9061998 0.1298025 22.389 < 2e-16 ***
ORIGIN_SZ2235 2.9341792 0.1289298 22.758 < 2e-16 ***
ORIGIN_SZ2236 2.8109067 0.1289231 21.803 < 2e-16 ***
ORIGIN_SZ2237 0.6457632 0.1399946 4.613 3.97e-06 ***
ORIGIN_SZ2256 0.5871896 0.1350322 4.349 1.37e-05 ***
ORIGIN_SZ2257 2.5703596 0.1297101 19.816 < 2e-16 ***
ORIGIN_SZ2258 2.1509525 0.1292432 16.643 < 2e-16 ***
ORIGIN_SZ2259 1.8622755 0.1325604 14.049 < 2e-16 ***
ORIGIN_SZ2277 2.6688346 0.1334693 19.996 < 2e-16 ***
ORIGIN_SZ2278 3.7780627 0.1288226 29.328 < 2e-16 ***
ORIGIN_SZ2279 1.7018214 0.1298144 13.110 < 2e-16 ***
ORIGIN_SZ2280 -0.2289202 0.1646950 -1.390 0.164540
ORIGIN_SZ2297 4.6422258 0.1286067 36.096 < 2e-16 ***
ORIGIN_SZ2300 0.3937649 0.1449787 2.716 0.006607 **
ORIGIN_SZ2301 2.1079027 0.1296113 16.263 < 2e-16 ***
ORIGIN_SZ2318 2.6638788 0.1295632 20.560 < 2e-16 ***
ORIGIN_SZ2319 3.3334151 0.1287048 25.900 < 2e-16 ***
ORIGIN_SZ2322 3.3271113 0.1288204 25.828 < 2e-16 ***
ORIGIN_SZ2337 4.2216265 0.1294297 32.617 < 2e-16 ***
ORIGIN_SZ2341 3.8112749 0.1286292 29.630 < 2e-16 ***
ORIGIN_SZ2343 2.5327363 0.1290309 19.629 < 2e-16 ***
ORIGIN_SZ2361 3.4319983 0.1288172 26.642 < 2e-16 ***
ORIGIN_SZ2364 -0.4204127 0.1478177 -2.844 0.004453 **
ORIGIN_SZ2379 3.3699803 0.1298850 25.946 < 2e-16 ***
ORIGIN_SZ2384 2.5353185 0.1291383 19.633 < 2e-16 ***
ORIGIN_SZ2405 2.2192627 0.1291656 17.182 < 2e-16 ***
ORIGIN_SZ2406 0.9149560 0.1323648 6.912 4.77e-12 ***
ORIGIN_SZ2426 1.7730999 0.1309198 13.543 < 2e-16 ***
ORIGIN_SZ2427 3.2807490 0.1287748 25.477 < 2e-16 ***
ORIGIN_SZ2505 3.7127909 0.1340928 27.688 < 2e-16 ***
DESTIN_SZ44 1.3465584 0.0552747 24.361 < 2e-16 ***
DESTIN_SZ46 0.4733805 0.0545386 8.680 < 2e-16 ***
DESTIN_SZ66 -0.3997839 0.0684168 -5.843 5.12e-09 ***
DESTIN_SZ67 0.3368221 0.0528685 6.371 1.88e-10 ***
DESTIN_SZ68 0.0845370 0.0547088 1.545 0.122293
DESTIN_SZ86 0.4635816 0.0610670 7.591 3.17e-14 ***
DESTIN_SZ87 -3.1422407 0.0988168 -31.799 < 2e-16 ***
DESTIN_SZ88 -0.1180767 0.0538092 -2.194 0.028210 *
DESTIN_SZ89 -0.6980253 0.0553479 -12.612 < 2e-16 ***
DESTIN_SZ90 -3.9160037 0.7091227 -5.522 3.35e-08 ***
DESTIN_SZ109 -0.6226877 0.0562075 -11.078 < 2e-16 ***
DESTIN_SZ110 -3.2079492 0.1125824 -28.494 < 2e-16 ***
DESTIN_SZ111 0.9793176 0.0521947 18.763 < 2e-16 ***
DESTIN_SZ112 -2.5128641 0.0602095 -41.735 < 2e-16 ***
DESTIN_SZ128 1.1851457 0.0558600 21.216 < 2e-16 ***
DESTIN_SZ129 -4.5074531 0.1432562 -31.464 < 2e-16 ***
DESTIN_SZ130 -0.6607416 0.0555224 -11.900 < 2e-16 ***
DESTIN_SZ131 -1.4454080 0.0555613 -26.015 < 2e-16 ***
DESTIN_SZ132 -0.9091877 0.0528203 -17.213 < 2e-16 ***
DESTIN_SZ133 -0.7984369 0.0521926 -15.298 < 2e-16 ***
DESTIN_SZ134 -0.7791536 0.0520393 -14.972 < 2e-16 ***
DESTIN_SZ150 -0.4358956 0.0609155 -7.156 8.32e-13 ***
DESTIN_SZ151 -0.5815015 0.0556990 -10.440 < 2e-16 ***
DESTIN_SZ152 0.4025926 0.0529938 7.597 3.03e-14 ***
DESTIN_SZ153 -0.0976076 0.0527370 -1.851 0.064193 .
DESTIN_SZ154 -2.2477477 0.0577318 -38.934 < 2e-16 ***
DESTIN_SZ155 -1.8215750 0.0540220 -33.719 < 2e-16 ***
DESTIN_SZ156 -1.7426161 0.0551028 -31.625 < 2e-16 ***
DESTIN_SZ172 -1.6507705 0.0670097 -24.635 < 2e-16 ***
DESTIN_SZ174 -1.1723299 0.0530813 -22.086 < 2e-16 ***
DESTIN_SZ175 -0.7246478 0.0517990 -13.990 < 2e-16 ***
DESTIN_SZ176 -2.1309526 0.0583380 -36.528 < 2e-16 ***
DESTIN_SZ195 -2.4862542 0.0590982 -42.070 < 2e-16 ***
DESTIN_SZ196 -1.0452412 0.0518460 -20.160 < 2e-16 ***
DESTIN_SZ197 -4.3268429 0.0908109 -47.647 < 2e-16 ***
DESTIN_SZ215 -0.5050356 0.0587532 -8.596 < 2e-16 ***
DESTIN_SZ216 -0.6007491 0.0530740 -11.319 < 2e-16 ***
DESTIN_SZ217 -0.3412048 0.0517170 -6.598 4.18e-11 ***
DESTIN_SZ237 -2.7027448 0.0595034 -45.422 < 2e-16 ***
DESTIN_SZ238 -1.6464125 0.0530738 -31.021 < 2e-16 ***
DESTIN_SZ239 -1.9366084 0.0591765 -32.726 < 2e-16 ***
DESTIN_SZ257 0.2856803 0.0535581 5.334 9.61e-08 ***
DESTIN_SZ258 -1.5722391 0.0544768 -28.861 < 2e-16 ***
DESTIN_SZ259 -0.4642608 0.0522834 -8.880 < 2e-16 ***
DESTIN_SZ278 0.7009633 0.0529649 13.234 < 2e-16 ***
DESTIN_SZ279 -1.0325634 0.0526517 -19.611 < 2e-16 ***
DESTIN_SZ280 -0.7996650 0.0524813 -15.237 < 2e-16 ***
DESTIN_SZ298 -3.6635331 0.1389092 -26.374 < 2e-16 ***
DESTIN_SZ299 -0.7224080 0.0533656 -13.537 < 2e-16 ***
DESTIN_SZ300 -1.3089165 0.0536905 -24.379 < 2e-16 ***
DESTIN_SZ320 0.4521028 0.0529834 8.533 < 2e-16 ***
DESTIN_SZ321 -1.6760147 0.0562251 -29.809 < 2e-16 ***
DESTIN_SZ322 -0.4430862 0.0523315 -8.467 < 2e-16 ***
DESTIN_SZ340 1.3240126 0.0521609 25.383 < 2e-16 ***
DESTIN_SZ341 -0.1869029 0.0523851 -3.568 0.000360 ***
DESTIN_SZ342 -0.5712097 0.0520673 -10.971 < 2e-16 ***
DESTIN_SZ363 -0.5803471 0.0527157 -11.009 < 2e-16 ***
DESTIN_SZ364 -0.5935134 0.0516027 -11.502 < 2e-16 ***
DESTIN_SZ383 0.4675486 0.0518130 9.024 < 2e-16 ***
DESTIN_SZ384 -0.8002355 0.0517140 -15.474 < 2e-16 ***
DESTIN_SZ385 -1.7349472 0.0531153 -32.664 < 2e-16 ***
DESTIN_SZ404 0.5631003 0.0525638 10.713 < 2e-16 ***
DESTIN_SZ405 -0.2500068 0.0520876 -4.800 1.59e-06 ***
DESTIN_SZ406 0.2236529 0.0513142 4.358 1.31e-05 ***
DESTIN_SZ407 0.0737308 0.0517015 1.426 0.153843
DESTIN_SZ408 1.1897568 0.0513201 23.183 < 2e-16 ***
DESTIN_SZ425 -1.8321010 0.0565820 -32.380 < 2e-16 ***
DESTIN_SZ426 -1.2500355 0.0520450 -24.018 < 2e-16 ***
DESTIN_SZ427 -3.6482206 0.0559020 -65.261 < 2e-16 ***
DESTIN_SZ428 -0.9590212 0.0520651 -18.420 < 2e-16 ***
DESTIN_SZ429 -1.3792767 0.0554247 -24.886 < 2e-16 ***
DESTIN_SZ446 -0.6183768 0.0557808 -11.086 < 2e-16 ***
DESTIN_SZ447 -1.4751869 0.0537604 -27.440 < 2e-16 ***
DESTIN_SZ448 -1.7616213 0.0523192 -33.671 < 2e-16 ***
DESTIN_SZ449 -1.0245411 0.0515680 -19.868 < 2e-16 ***
DESTIN_SZ450 -1.4600082 0.0523199 -27.905 < 2e-16 ***
DESTIN_SZ468 -1.0593057 0.0521371 -20.318 < 2e-16 ***
DESTIN_SZ469 -1.5866427 0.0517624 -30.652 < 2e-16 ***
DESTIN_SZ470 -1.1759848 0.0515265 -22.823 < 2e-16 ***
DESTIN_SZ471 -1.1231523 0.0534104 -21.029 < 2e-16 ***
DESTIN_SZ488 -0.7484456 0.0556641 -13.446 < 2e-16 ***
DESTIN_SZ489 -2.8044168 0.0686052 -40.878 < 2e-16 ***
DESTIN_SZ490 -0.8216495 0.0517621 -15.874 < 2e-16 ***
DESTIN_SZ491 -3.1181946 0.0532078 -58.604 < 2e-16 ***
DESTIN_SZ493 -3.7237962 0.0699544 -53.232 < 2e-16 ***
DESTIN_SZ494 -1.8668986 0.0555785 -33.590 < 2e-16 ***
DESTIN_SZ509 -0.3708826 0.0532601 -6.964 3.32e-12 ***
DESTIN_SZ510 -0.5545414 0.0520183 -10.660 < 2e-16 ***
DESTIN_SZ511 -1.3029538 0.0515260 -25.287 < 2e-16 ***
DESTIN_SZ512 -1.4912252 0.0515055 -28.953 < 2e-16 ***
DESTIN_SZ513 -0.3506093 0.0516693 -6.786 1.16e-11 ***
DESTIN_SZ514 -0.8434709 0.0524751 -16.074 < 2e-16 ***
DESTIN_SZ515 -2.1953561 0.0592487 -37.053 < 2e-16 ***
DESTIN_SZ530 -1.0180346 0.0585325 -17.393 < 2e-16 ***
DESTIN_SZ531 1.2507610 0.0514733 24.299 < 2e-16 ***
DESTIN_SZ532 -1.1245795 0.0518263 -21.699 < 2e-16 ***
DESTIN_SZ533 0.1415927 0.0512036 2.765 0.005687 **
DESTIN_SZ534 -1.2612089 0.0515075 -24.486 < 2e-16 ***
DESTIN_SZ536 -1.7144512 0.0540887 -31.697 < 2e-16 ***
DESTIN_SZ537 -2.4697550 0.0610971 -40.423 < 2e-16 ***
DESTIN_SZ538 -2.8332356 0.0667309 -42.458 < 2e-16 ***
DESTIN_SZ539 -5.0528522 0.2552026 -19.799 < 2e-16 ***
DESTIN_SZ551 -0.4040703 0.0540474 -7.476 7.65e-14 ***
DESTIN_SZ552 0.0309943 0.0521737 0.594 0.552472
DESTIN_SZ553 -1.9124699 0.0518089 -36.914 < 2e-16 ***
DESTIN_SZ554 -1.8593903 0.0515456 -36.073 < 2e-16 ***
DESTIN_SZ555 -0.6581445 0.0516528 -12.742 < 2e-16 ***
DESTIN_SZ559 -3.0342676 0.0736433 -41.202 < 2e-16 ***
DESTIN_SZ560 -0.5812622 0.0537097 -10.822 < 2e-16 ***
DESTIN_SZ561 -3.0044879 0.0820751 -36.607 < 2e-16 ***
DESTIN_SZ572 -1.3423346 0.0615486 -21.809 < 2e-16 ***
DESTIN_SZ573 0.3880019 0.0521287 7.443 9.83e-14 ***
DESTIN_SZ574 -1.4833395 0.0534147 -27.770 < 2e-16 ***
DESTIN_SZ575 1.1626338 0.0511651 22.723 < 2e-16 ***
DESTIN_SZ576 -1.5030992 0.0514937 -29.190 < 2e-16 ***
DESTIN_SZ578 -4.9724895 0.1102063 -45.120 < 2e-16 ***
DESTIN_SZ582 -3.1882335 0.0798794 -39.913 < 2e-16 ***
DESTIN_SZ583 -4.7478195 0.1912829 -24.821 < 2e-16 ***
DESTIN_SZ584 -1.5925614 0.0617080 -25.808 < 2e-16 ***
DESTIN_SZ593 -1.8944744 0.0568831 -33.305 < 2e-16 ***
DESTIN_SZ594 -0.6092411 0.0528902 -11.519 < 2e-16 ***
DESTIN_SZ595 -0.8194004 0.0514523 -15.925 < 2e-16 ***
DESTIN_SZ596 -1.3308039 0.0513654 -25.909 < 2e-16 ***
DESTIN_SZ597 -1.8556665 0.0532955 -34.818 < 2e-16 ***
DESTIN_SZ603 -2.7374758 0.0724089 -37.806 < 2e-16 ***
DESTIN_SZ604 -2.2784722 0.0710043 -32.089 < 2e-16 ***
DESTIN_SZ615 -1.5243693 0.0531352 -28.689 < 2e-16 ***
DESTIN_SZ616 -0.9870236 0.0518633 -19.031 < 2e-16 ***
DESTIN_SZ617 -2.1403596 0.0519108 -41.232 < 2e-16 ***
DESTIN_SZ618 -1.4299813 0.0514956 -27.769 < 2e-16 ***
DESTIN_SZ620 -1.4164298 0.0523437 -27.060 < 2e-16 ***
DESTIN_SZ637 -1.5680654 0.0522500 -30.011 < 2e-16 ***
DESTIN_SZ638 -1.4143585 0.0514393 -27.496 < 2e-16 ***
DESTIN_SZ657 -0.1866896 0.0516167 -3.617 0.000298 ***
DESTIN_SZ658 -0.8429585 0.0514882 -16.372 < 2e-16 ***
DESTIN_SZ659 -1.1592791 0.0514500 -22.532 < 2e-16 ***
DESTIN_SZ660 -0.5182062 0.0512845 -10.105 < 2e-16 ***
DESTIN_SZ662 -1.2743416 0.0524592 -24.292 < 2e-16 ***
DESTIN_SZ677 -0.1040076 0.0519816 -2.001 0.045408 *
DESTIN_SZ678 -2.0354756 0.0529642 -38.431 < 2e-16 ***
DESTIN_SZ679 -0.5141603 0.0513700 -10.009 < 2e-16 ***
DESTIN_SZ680 0.8921399 0.0512010 17.424 < 2e-16 ***
DESTIN_SZ681 -2.8182824 0.0540739 -52.119 < 2e-16 ***
DESTIN_SZ699 -0.7759566 0.0519148 -14.947 < 2e-16 ***
DESTIN_SZ700 -1.1170082 0.0515863 -21.653 < 2e-16 ***
DESTIN_SZ701 -3.4034289 0.0546095 -62.323 < 2e-16 ***
DESTIN_SZ702 -0.8162003 0.0513397 -15.898 < 2e-16 ***
DESTIN_SZ704 -1.8155571 0.0522888 -34.722 < 2e-16 ***
DESTIN_SZ722 -1.7649993 0.0518779 -34.022 < 2e-16 ***
DESTIN_SZ725 -3.9602291 0.0573938 -69.001 < 2e-16 ***
DESTIN_SZ741 -0.1450858 0.0516588 -2.809 0.004977 **
DESTIN_SZ743 -3.5773540 0.0550215 -65.017 < 2e-16 ***
DESTIN_SZ744 -0.7893227 0.0513543 -15.370 < 2e-16 ***
DESTIN_SZ761 0.1473416 0.0518412 2.842 0.004481 **
DESTIN_SZ762 -1.8342792 0.0528198 -34.727 < 2e-16 ***
DESTIN_SZ763 -3.3261547 0.0547618 -60.739 < 2e-16 ***
DESTIN_SZ764 -0.2613486 0.0512618 -5.098 3.43e-07 ***
DESTIN_SZ765 -1.2670685 0.0520325 -24.351 < 2e-16 ***
DESTIN_SZ767 -1.4023264 0.0515893 -27.182 < 2e-16 ***
DESTIN_SZ772 -2.4459196 0.0638638 -38.299 < 2e-16 ***
DESTIN_SZ784 -3.1981585 0.0552435 -57.892 < 2e-16 ***
DESTIN_SZ785 -1.2723877 0.0514317 -24.739 < 2e-16 ***
DESTIN_SZ786 -1.2483568 0.0513877 -24.293 < 2e-16 ***
DESTIN_SZ787 -2.0407245 0.0522623 -39.048 < 2e-16 ***
DESTIN_SZ788 -3.2502497 0.0530895 -61.222 < 2e-16 ***
DESTIN_SZ789 -3.5983163 0.0538642 -66.804 < 2e-16 ***
DESTIN_SZ803 -1.0832399 0.0530141 -20.433 < 2e-16 ***
DESTIN_SZ804 -0.4577476 0.0515184 -8.885 < 2e-16 ***
DESTIN_SZ805 0.5051974 0.0512245 9.862 < 2e-16 ***
DESTIN_SZ806 -1.3966311 0.0514508 -27.145 < 2e-16 ***
DESTIN_SZ807 -1.2748154 0.0515974 -24.707 < 2e-16 ***
DESTIN_SZ808 -2.8659017 0.0540633 -53.010 < 2e-16 ***
DESTIN_SZ809 -1.5465543 0.0514190 -30.078 < 2e-16 ***
DESTIN_SZ810 -1.9283950 0.0517892 -37.235 < 2e-16 ***
DESTIN_SZ814 -1.4206578 0.0548431 -25.904 < 2e-16 ***
DESTIN_SZ819 0.0930385 0.0530746 1.753 0.079606 .
DESTIN_SZ824 -0.8194761 0.0528934 -15.493 < 2e-16 ***
DESTIN_SZ826 -1.0789638 0.0514873 -20.956 < 2e-16 ***
DESTIN_SZ827 -1.3769576 0.0515212 -26.726 < 2e-16 ***
DESTIN_SZ828 -1.1583100 0.0513721 -22.547 < 2e-16 ***
DESTIN_SZ829 -1.6608292 0.0517214 -32.111 < 2e-16 ***
DESTIN_SZ830 -3.0210698 0.0526717 -57.357 < 2e-16 ***
DESTIN_SZ831 0.3520983 0.0512268 6.873 6.27e-12 ***
DESTIN_SZ832 -0.0453159 0.0513236 -0.883 0.377265
DESTIN_SZ835 -1.8321219 0.0551078 -33.246 < 2e-16 ***
DESTIN_SZ844 -1.0972282 0.0542095 -20.241 < 2e-16 ***
DESTIN_SZ846 -1.0738578 0.0515977 -20.812 < 2e-16 ***
DESTIN_SZ847 -0.3315192 0.0513380 -6.458 1.06e-10 ***
DESTIN_SZ848 -1.5817942 0.0515296 -30.697 < 2e-16 ***
DESTIN_SZ849 -2.2900045 0.0517824 -44.224 < 2e-16 ***
DESTIN_SZ850 -1.3835988 0.0514262 -26.905 < 2e-16 ***
DESTIN_SZ851 -1.8830573 0.0515135 -36.555 < 2e-16 ***
DESTIN_SZ852 -2.0994534 0.0517980 -40.532 < 2e-16 ***
DESTIN_SZ853 -0.9434048 0.0518349 -18.200 < 2e-16 ***
DESTIN_SZ854 -1.0909376 0.0530310 -20.572 < 2e-16 ***
DESTIN_SZ855 -2.0733326 0.0548017 -37.833 < 2e-16 ***
DESTIN_SZ856 -2.7003826 0.0597590 -45.188 < 2e-16 ***
DESTIN_SZ866 -0.3526815 0.0520757 -6.772 1.27e-11 ***
DESTIN_SZ867 0.1985385 0.0513490 3.866 0.000110 ***
DESTIN_SZ868 -0.1903955 0.0514070 -3.704 0.000212 ***
DESTIN_SZ869 0.6057838 0.0514014 11.785 < 2e-16 ***
DESTIN_SZ870 0.1889834 0.0512267 3.689 0.000225 ***
DESTIN_SZ871 0.0845965 0.0513041 1.649 0.099163 .
DESTIN_SZ872 -1.3917872 0.0514400 -27.057 < 2e-16 ***
DESTIN_SZ873 -1.8704506 0.0517428 -36.149 < 2e-16 ***
DESTIN_SZ874 -3.2426506 0.0528168 -61.394 < 2e-16 ***
DESTIN_SZ875 -2.5610004 0.0577036 -44.382 < 2e-16 ***
DESTIN_SZ876 -2.2103910 0.0542965 -40.710 < 2e-16 ***
DESTIN_SZ877 -1.5217329 0.0530579 -28.681 < 2e-16 ***
DESTIN_SZ887 -1.1224325 0.0518741 -21.638 < 2e-16 ***
DESTIN_SZ888 -2.3392348 0.0528535 -44.259 < 2e-16 ***
DESTIN_SZ889 -1.6586910 0.0526797 -31.486 < 2e-16 ***
DESTIN_SZ890 -0.7169046 0.0513723 -13.955 < 2e-16 ***
DESTIN_SZ891 -2.3116466 0.0530868 -43.545 < 2e-16 ***
DESTIN_SZ893 -1.0172179 0.0513349 -19.815 < 2e-16 ***
DESTIN_SZ894 -2.6538890 0.0523346 -50.710 < 2e-16 ***
DESTIN_SZ895 -1.4478470 0.0519322 -27.880 < 2e-16 ***
DESTIN_SZ896 -3.8162778 0.0602171 -63.375 < 2e-16 ***
DESTIN_SZ897 -3.7169865 0.0584344 -63.610 < 2e-16 ***
DESTIN_SZ898 -1.5776432 0.0536918 -29.383 < 2e-16 ***
DESTIN_SZ908 -0.2196762 0.0522050 -4.208 2.58e-05 ***
DESTIN_SZ909 -1.0955557 0.0515015 -21.272 < 2e-16 ***
DESTIN_SZ910 -2.1326394 0.0523963 -40.702 < 2e-16 ***
DESTIN_SZ911 0.0666298 0.0513050 1.299 0.194047
DESTIN_SZ912 -1.6220767 0.0516303 -31.417 < 2e-16 ***
DESTIN_SZ915 -1.5859209 0.0514743 -30.810 < 2e-16 ***
DESTIN_SZ917 -0.1846754 0.0514461 -3.590 0.000331 ***
DESTIN_SZ918 -4.4981133 0.0639896 -70.294 < 2e-16 ***
DESTIN_SZ919 -2.7607625 0.0532485 -51.847 < 2e-16 ***
DESTIN_SZ928 -2.1851323 0.0539988 -40.466 < 2e-16 ***
DESTIN_SZ929 -1.2774611 0.0516193 -24.748 < 2e-16 ***
DESTIN_SZ930 -0.0207390 0.0512725 -0.404 0.685856
DESTIN_SZ931 -1.5864514 0.0521512 -30.420 < 2e-16 ***
DESTIN_SZ932 -3.3098683 0.0564536 -58.630 < 2e-16 ***
DESTIN_SZ933 -1.2233028 0.0516972 -23.663 < 2e-16 ***
DESTIN_SZ934 -1.6063561 0.0517261 -31.055 < 2e-16 ***
DESTIN_SZ935 0.3875569 0.0512170 7.567 3.82e-14 ***
DESTIN_SZ938 -5.3549263 0.1454742 -36.810 < 2e-16 ***
DESTIN_SZ939 0.5814617 0.0512950 11.336 < 2e-16 ***
DESTIN_SZ940 -3.4547554 0.0545960 -63.279 < 2e-16 ***
DESTIN_SZ949 -1.8347539 0.0531021 -34.551 < 2e-16 ***
DESTIN_SZ950 0.1844055 0.0513732 3.590 0.000331 ***
DESTIN_SZ951 0.9036129 0.0512181 17.642 < 2e-16 ***
DESTIN_SZ952 -0.6740525 0.0517016 -13.037 < 2e-16 ***
DESTIN_SZ953 -1.1811587 0.0518717 -22.771 < 2e-16 ***
DESTIN_SZ954 -3.0541912 0.0536862 -56.890 < 2e-16 ***
DESTIN_SZ955 -0.2614540 0.0513302 -5.094 3.51e-07 ***
DESTIN_SZ956 -2.2800803 0.0519515 -43.889 < 2e-16 ***
DESTIN_SZ957 -2.1140890 0.0518687 -40.758 < 2e-16 ***
DESTIN_SZ959 -1.6476012 0.0547436 -30.097 < 2e-16 ***
DESTIN_SZ961 -2.0981287 0.0525417 -39.933 < 2e-16 ***
DESTIN_SZ962 0.0943313 0.0514293 1.834 0.066625 .
DESTIN_SZ970 -0.7228859 0.0516038 -14.008 < 2e-16 ***
DESTIN_SZ971 -0.4300097 0.0513356 -8.376 < 2e-16 ***
DESTIN_SZ972 -1.2446877 0.0516081 -24.118 < 2e-16 ***
DESTIN_SZ974 -1.6264140 0.0521470 -31.189 < 2e-16 ***
DESTIN_SZ975 -2.8998202 0.0535544 -54.147 < 2e-16 ***
DESTIN_SZ976 -2.2971684 0.0522337 -43.979 < 2e-16 ***
DESTIN_SZ977 -1.8527392 0.0515549 -35.937 < 2e-16 ***
DESTIN_SZ978 -2.2061726 0.0522399 -42.232 < 2e-16 ***
DESTIN_SZ982 -2.8466655 0.0523087 -54.420 < 2e-16 ***
DESTIN_SZ983 0.3347651 0.0514037 6.512 7.39e-11 ***
DESTIN_SZ984 1.5769466 0.0515676 30.580 < 2e-16 ***
DESTIN_SZ991 -0.3814658 0.0515806 -7.396 1.41e-13 ***
DESTIN_SZ992 -0.3901041 0.0514525 -7.582 3.41e-14 ***
DESTIN_SZ993 -1.9033582 0.0519673 -36.626 < 2e-16 ***
DESTIN_SZ994 -2.0043143 0.0524468 -38.216 < 2e-16 ***
DESTIN_SZ995 -1.2538591 0.0517354 -24.236 < 2e-16 ***
DESTIN_SZ996 -1.9492467 0.0523179 -37.258 < 2e-16 ***
DESTIN_SZ997 -1.7255434 0.0527513 -32.711 < 2e-16 ***
DESTIN_SZ998 -1.2994239 0.0515016 -25.231 < 2e-16 ***
DESTIN_SZ999 -2.3811509 0.0520864 -45.715 < 2e-16 ***
DESTIN_SZ1001 -1.4617871 0.0535314 -27.307 < 2e-16 ***
DESTIN_SZ1003 -0.0904051 0.0512806 -1.763 0.077909 .
DESTIN_SZ1004 -1.3260386 0.0514165 -25.790 < 2e-16 ***
DESTIN_SZ1011 -0.9641882 0.0525089 -18.362 < 2e-16 ***
DESTIN_SZ1012 0.3119523 0.0515649 6.050 1.45e-09 ***
DESTIN_SZ1013 -0.7157016 0.0516117 -13.867 < 2e-16 ***
DESTIN_SZ1014 -2.5305091 0.0535169 -47.284 < 2e-16 ***
DESTIN_SZ1015 0.0153563 0.0513503 0.299 0.764902
DESTIN_SZ1016 0.2124780 0.0512905 4.143 3.43e-05 ***
DESTIN_SZ1018 -2.1934870 0.0525243 -41.761 < 2e-16 ***
DESTIN_SZ1019 -1.2515810 0.0514903 -24.307 < 2e-16 ***
DESTIN_SZ1023 -2.1663668 0.0527534 -41.066 < 2e-16 ***
DESTIN_SZ1024 -1.1410485 0.0515292 -22.144 < 2e-16 ***
DESTIN_SZ1025 -5.7901842 0.0889698 -65.080 < 2e-16 ***
DESTIN_SZ1033 -0.0598008 0.0514924 -1.161 0.245499
DESTIN_SZ1034 0.1189022 0.0513578 2.315 0.020603 *
DESTIN_SZ1035 0.0112549 0.0513694 0.219 0.826574
DESTIN_SZ1036 0.1274016 0.0513392 2.482 0.013081 *
DESTIN_SZ1037 -0.9195166 0.0515122 -17.850 < 2e-16 ***
DESTIN_SZ1043 -0.5806480 0.0522268 -11.118 < 2e-16 ***
DESTIN_SZ1045 -1.3824565 0.0514825 -26.853 < 2e-16 ***
DESTIN_SZ1046 -1.0404854 0.0514869 -20.209 < 2e-16 ***
DESTIN_SZ1053 0.5488982 0.0513643 10.686 < 2e-16 ***
DESTIN_SZ1054 0.1359217 0.0513867 2.645 0.008167 **
DESTIN_SZ1055 -1.1386931 0.0517989 -21.983 < 2e-16 ***
DESTIN_SZ1056 -1.5653296 0.0522553 -29.955 < 2e-16 ***
DESTIN_SZ1064 -3.8384852 0.0978233 -39.239 < 2e-16 ***
DESTIN_SZ1066 -0.4595103 0.0513341 -8.951 < 2e-16 ***
DESTIN_SZ1067 0.1789866 0.0513992 3.482 0.000497 ***
DESTIN_SZ1074 -1.5734626 0.0528502 -29.772 < 2e-16 ***
DESTIN_SZ1075 0.0255682 0.0514930 0.497 0.619516
DESTIN_SZ1076 -0.8343004 0.0516106 -16.165 < 2e-16 ***
DESTIN_SZ1077 -1.4360756 0.0520234 -27.604 < 2e-16 ***
DESTIN_SZ1079 -0.4494616 0.0514658 -8.733 < 2e-16 ***
DESTIN_SZ1085 -2.2069870 0.0713393 -30.936 < 2e-16 ***
DESTIN_SZ1087 -1.2107242 0.0515355 -23.493 < 2e-16 ***
DESTIN_SZ1088 -0.7876783 0.0514417 -15.312 < 2e-16 ***
DESTIN_SZ1094 -3.2942017 0.0709736 -46.414 < 2e-16 ***
DESTIN_SZ1095 -0.8095091 0.0530204 -15.268 < 2e-16 ***
DESTIN_SZ1096 -0.4640757 0.0532811 -8.710 < 2e-16 ***
DESTIN_SZ1097 0.3612423 0.0513030 7.041 1.90e-12 ***
DESTIN_SZ1098 -2.5234291 0.0554278 -45.526 < 2e-16 ***
DESTIN_SZ1099 -1.1743517 0.0517473 -22.694 < 2e-16 ***
DESTIN_SZ1105 0.8242812 0.0519110 15.879 < 2e-16 ***
DESTIN_SZ1106 -4.3749464 0.1056844 -41.396 < 2e-16 ***
DESTIN_SZ1107 -0.9292132 0.0517009 -17.973 < 2e-16 ***
DESTIN_SZ1108 1.2654998 0.0512240 24.705 < 2e-16 ***
DESTIN_SZ1109 -2.6269107 0.0536852 -48.932 < 2e-16 ***
DESTIN_SZ1116 -0.6562180 0.0518350 -12.660 < 2e-16 ***
DESTIN_SZ1117 -0.1794771 0.0516439 -3.475 0.000510 ***
DESTIN_SZ1118 -2.2251819 0.0538985 -41.285 < 2e-16 ***
DESTIN_SZ1119 -1.5638678 0.0521819 -29.970 < 2e-16 ***
DESTIN_SZ1120 -2.0756898 0.0537696 -38.603 < 2e-16 ***
DESTIN_SZ1129 -1.7524648 0.0517376 -33.872 < 2e-16 ***
DESTIN_SZ1130 -1.0508960 0.0514603 -20.422 < 2e-16 ***
DESTIN_SZ1131 0.7056364 0.0513747 13.735 < 2e-16 ***
DESTIN_SZ1136 0.6324985 0.0513689 12.313 < 2e-16 ***
DESTIN_SZ1138 -1.8612461 0.0538289 -34.577 < 2e-16 ***
DESTIN_SZ1139 -0.9847199 0.0516027 -19.083 < 2e-16 ***
DESTIN_SZ1141 -1.0730138 0.0517369 -20.740 < 2e-16 ***
DESTIN_SZ1148 -2.1319069 0.0586662 -36.340 < 2e-16 ***
DESTIN_SZ1149 -2.2086026 0.0529001 -41.750 < 2e-16 ***
DESTIN_SZ1150 -1.7375958 0.0515935 -33.679 < 2e-16 ***
DESTIN_SZ1151 -1.0472107 0.0515783 -20.303 < 2e-16 ***
DESTIN_SZ1158 -1.4061612 0.0522503 -26.912 < 2e-16 ***
DESTIN_SZ1159 -1.2748526 0.0518928 -24.567 < 2e-16 ***
DESTIN_SZ1160 0.3364508 0.0513055 6.558 5.46e-11 ***
DESTIN_SZ1171 -0.7877845 0.0514998 -15.297 < 2e-16 ***
DESTIN_SZ1172 0.4984698 0.0512695 9.723 < 2e-16 ***
DESTIN_SZ1173 -0.0794624 0.0514211 -1.545 0.122267
DESTIN_SZ1174 -2.2986394 0.0652582 -35.224 < 2e-16 ***
DESTIN_SZ1178 0.8393727 0.0512792 16.369 < 2e-16 ***
DESTIN_SZ1179 -0.1816689 0.0514063 -3.534 0.000409 ***
DESTIN_SZ1180 -0.1176017 0.0513669 -2.289 0.022053 *
DESTIN_SZ1181 -1.3783805 0.0518649 -26.576 < 2e-16 ***
DESTIN_SZ1183 0.2186435 0.0513442 4.258 2.06e-05 ***
DESTIN_SZ1190 -1.9413350 0.0570433 -34.033 < 2e-16 ***
DESTIN_SZ1192 -0.8561079 0.0514498 -16.640 < 2e-16 ***
DESTIN_SZ1193 -0.6766507 0.0514533 -13.151 < 2e-16 ***
DESTIN_SZ1194 -0.1219064 0.0515173 -2.366 0.017966 *
DESTIN_SZ1200 -0.5107774 0.0516302 -9.893 < 2e-16 ***
DESTIN_SZ1201 -0.8479116 0.0516651 -16.412 < 2e-16 ***
DESTIN_SZ1203 -0.8485235 0.0517206 -16.406 < 2e-16 ***
DESTIN_SZ1204 -1.1459274 0.0518664 -22.094 < 2e-16 ***
DESTIN_SZ1211 -5.3482133 0.2633088 -20.312 < 2e-16 ***
DESTIN_SZ1214 -1.7327471 0.0518460 -33.421 < 2e-16 ***
DESTIN_SZ1215 -1.4041855 0.0524456 -26.774 < 2e-16 ***
DESTIN_SZ1216 -0.5561443 0.0520675 -10.681 < 2e-16 ***
DESTIN_SZ1220 -0.3435703 0.0514993 -6.671 2.53e-11 ***
DESTIN_SZ1221 0.2427156 0.0513199 4.729 2.25e-06 ***
DESTIN_SZ1222 -1.0570772 0.0525816 -20.104 < 2e-16 ***
DESTIN_SZ1223 -1.4285832 0.0522589 -27.337 < 2e-16 ***
DESTIN_SZ1224 -0.8950403 0.0517213 -17.305 < 2e-16 ***
DESTIN_SZ1231 -3.4101759 0.0761208 -44.800 < 2e-16 ***
DESTIN_SZ1232 -1.4861084 0.0560361 -26.521 < 2e-16 ***
DESTIN_SZ1235 -0.9933345 0.0515212 -19.280 < 2e-16 ***
DESTIN_SZ1236 -1.0141386 0.0518390 -19.563 < 2e-16 ***
DESTIN_SZ1241 -1.6773722 0.0524084 -32.006 < 2e-16 ***
DESTIN_SZ1242 -1.1869120 0.0518964 -22.871 < 2e-16 ***
DESTIN_SZ1243 -0.0512829 0.0513894 -0.998 0.318314
DESTIN_SZ1246 -1.2021280 0.0518270 -23.195 < 2e-16 ***
DESTIN_SZ1256 -1.6900549 0.0518779 -32.578 < 2e-16 ***
DESTIN_SZ1257 -0.6603803 0.0515556 -12.809 < 2e-16 ***
DESTIN_SZ1258 0.3647824 0.0514408 7.091 1.33e-12 ***
DESTIN_SZ1262 -1.9689107 0.0528132 -37.281 < 2e-16 ***
DESTIN_SZ1263 0.4297389 0.0512712 8.382 < 2e-16 ***
DESTIN_SZ1264 -0.4650502 0.0516443 -9.005 < 2e-16 ***
DESTIN_SZ1265 -0.5962064 0.0517401 -11.523 < 2e-16 ***
DESTIN_SZ1266 -0.4748450 0.0515768 -9.207 < 2e-16 ***
DESTIN_SZ1267 -1.9509609 0.0537645 -36.287 < 2e-16 ***
DESTIN_SZ1272 -5.4339424 0.1102339 -49.295 < 2e-16 ***
DESTIN_SZ1273 -0.5570360 0.0516539 -10.784 < 2e-16 ***
DESTIN_SZ1277 -0.3651006 0.0513755 -7.107 1.19e-12 ***
DESTIN_SZ1278 -0.7251169 0.0515411 -14.069 < 2e-16 ***
DESTIN_SZ1283 0.8990208 0.0512697 17.535 < 2e-16 ***
DESTIN_SZ1284 0.4337546 0.0513024 8.455 < 2e-16 ***
DESTIN_SZ1285 0.1440777 0.0513512 2.806 0.005020 **
DESTIN_SZ1286 -0.8045863 0.0519950 -15.474 < 2e-16 ***
DESTIN_SZ1289 -3.1707349 0.0627624 -50.520 < 2e-16 ***
DESTIN_SZ1293 -4.5745035 0.0860708 -53.148 < 2e-16 ***
DESTIN_SZ1294 -0.6340644 0.0518767 -12.223 < 2e-16 ***
DESTIN_SZ1295 -3.1193206 0.0563294 -55.376 < 2e-16 ***
DESTIN_SZ1298 -1.2318444 0.0516298 -23.859 < 2e-16 ***
DESTIN_SZ1299 -1.4121868 0.0519107 -27.204 < 2e-16 ***
DESTIN_SZ1304 -0.1865795 0.0514730 -3.625 0.000289 ***
DESTIN_SZ1305 -0.0461675 0.0513289 -0.899 0.368416
DESTIN_SZ1307 -1.3808885 0.0540903 -25.529 < 2e-16 ***
DESTIN_SZ1308 -0.2700128 0.0514480 -5.248 1.54e-07 ***
DESTIN_SZ1310 -5.2086050 0.1721875 -30.250 < 2e-16 ***
DESTIN_SZ1316 -2.4834020 0.0533966 -46.509 < 2e-16 ***
DESTIN_SZ1317 -2.6858519 0.0529050 -50.767 < 2e-16 ***
DESTIN_SZ1318 -2.8502076 0.0537349 -53.042 < 2e-16 ***
DESTIN_SZ1319 0.1247264 0.0513102 2.431 0.015064 *
DESTIN_SZ1320 -1.9225800 0.0527853 -36.423 < 2e-16 ***
DESTIN_SZ1324 -0.1203815 0.0536871 -2.242 0.024943 *
DESTIN_SZ1325 -2.1317855 0.0530663 -40.172 < 2e-16 ***
DESTIN_SZ1326 -0.4529630 0.0514530 -8.803 < 2e-16 ***
DESTIN_SZ1327 -0.2842318 0.0514171 -5.528 3.24e-08 ***
DESTIN_SZ1328 -0.5087754 0.0515602 -9.868 < 2e-16 ***
DESTIN_SZ1329 -0.6952741 0.0519136 -13.393 < 2e-16 ***
DESTIN_SZ1330 0.6000771 0.0514102 11.672 < 2e-16 ***
DESTIN_SZ1331 -6.0886905 0.2721199 -22.375 < 2e-16 ***
DESTIN_SZ1333 -1.9878083 0.0533834 -37.236 < 2e-16 ***
DESTIN_SZ1334 -1.6125442 0.0527000 -30.599 < 2e-16 ***
DESTIN_SZ1335 0.0326094 0.0514665 0.634 0.526338
DESTIN_SZ1336 -3.4239145 0.0680471 -50.317 < 2e-16 ***
DESTIN_SZ1337 -3.6327846 0.0604335 -60.112 < 2e-16 ***
DESTIN_SZ1338 -4.0048506 0.0583821 -68.597 < 2e-16 ***
DESTIN_SZ1339 -0.1674056 0.0513209 -3.262 0.001107 **
DESTIN_SZ1340 -1.5554293 0.0519583 -29.936 < 2e-16 ***
DESTIN_SZ1341 -5.4817506 0.1067763 -51.339 < 2e-16 ***
DESTIN_SZ1346 -0.3821597 0.0516352 -7.401 1.35e-13 ***
DESTIN_SZ1347 0.7756609 0.0512908 15.123 < 2e-16 ***
DESTIN_SZ1348 -0.6428765 0.0515697 -12.466 < 2e-16 ***
DESTIN_SZ1349 0.3115554 0.0514102 6.060 1.36e-09 ***
DESTIN_SZ1350 -1.4699155 0.0528513 -27.812 < 2e-16 ***
DESTIN_SZ1353 -0.5191139 0.0515221 -10.076 < 2e-16 ***
DESTIN_SZ1354 -1.5035133 0.0521227 -28.846 < 2e-16 ***
DESTIN_SZ1355 -1.7178306 0.0523017 -32.845 < 2e-16 ***
DESTIN_SZ1357 -2.3595879 0.0544920 -43.302 < 2e-16 ***
DESTIN_SZ1358 -0.1452005 0.0513196 -2.829 0.004664 **
DESTIN_SZ1359 -1.4613085 0.0515483 -28.348 < 2e-16 ***
DESTIN_SZ1360 -1.6849440 0.0516554 -32.619 < 2e-16 ***
DESTIN_SZ1361 -1.4592377 0.0519392 -28.095 < 2e-16 ***
DESTIN_SZ1362 -2.8464190 0.0580652 -49.021 < 2e-16 ***
DESTIN_SZ1368 -1.2706292 0.0518590 -24.502 < 2e-16 ***
DESTIN_SZ1369 -1.1948572 0.0518254 -23.055 < 2e-16 ***
DESTIN_SZ1370 0.4870551 0.0512837 9.497 < 2e-16 ***
DESTIN_SZ1371 -0.5398267 0.0516584 -10.450 < 2e-16 ***
DESTIN_SZ1372 -0.5812838 0.0516109 -11.263 < 2e-16 ***
DESTIN_SZ1373 -3.4980735 0.0607006 -57.628 < 2e-16 ***
DESTIN_SZ1374 -2.1709686 0.0529672 -40.987 < 2e-16 ***
DESTIN_SZ1375 -0.3853432 0.0516566 -7.460 8.67e-14 ***
DESTIN_SZ1376 -2.1142531 0.0536502 -39.408 < 2e-16 ***
DESTIN_SZ1379 -5.2373685 0.0839557 -62.383 < 2e-16 ***
DESTIN_SZ1380 0.4743753 0.0512530 9.256 < 2e-16 ***
DESTIN_SZ1381 0.6293664 0.0512435 12.282 < 2e-16 ***
DESTIN_SZ1382 -0.2089116 0.0513889 -4.065 4.80e-05 ***
DESTIN_SZ1383 -2.9598389 0.0546140 -54.196 < 2e-16 ***
DESTIN_SZ1388 -0.5614026 0.0515416 -10.892 < 2e-16 ***
DESTIN_SZ1389 -0.8426909 0.0516392 -16.319 < 2e-16 ***
DESTIN_SZ1390 -0.4594820 0.0515625 -8.911 < 2e-16 ***
DESTIN_SZ1391 0.2458549 0.0513712 4.786 1.70e-06 ***
DESTIN_SZ1392 -0.4496962 0.0523871 -8.584 < 2e-16 ***
DESTIN_SZ1393 -1.0914387 0.0517870 -21.076 < 2e-16 ***
DESTIN_SZ1394 -0.4505698 0.0514336 -8.760 < 2e-16 ***
DESTIN_SZ1395 -1.1168045 0.0516347 -21.629 < 2e-16 ***
DESTIN_SZ1396 -0.4165918 0.0514207 -8.102 5.42e-16 ***
DESTIN_SZ1397 -1.4033115 0.0517414 -27.122 < 2e-16 ***
DESTIN_SZ1398 -1.8554711 0.0531389 -34.917 < 2e-16 ***
DESTIN_SZ1400 -2.2589084 0.0522736 -43.213 < 2e-16 ***
DESTIN_SZ1401 -0.5157389 0.0512958 -10.054 < 2e-16 ***
DESTIN_SZ1402 -1.2192517 0.0514617 -23.692 < 2e-16 ***
DESTIN_SZ1404 -1.7141034 0.0557500 -30.746 < 2e-16 ***
DESTIN_SZ1410 0.4294712 0.0513031 8.371 < 2e-16 ***
DESTIN_SZ1411 -0.4079057 0.0516039 -7.905 2.69e-15 ***
DESTIN_SZ1412 0.1928453 0.0513232 3.757 0.000172 ***
DESTIN_SZ1413 -0.5849059 0.0515423 -11.348 < 2e-16 ***
DESTIN_SZ1414 -0.6939913 0.0514872 -13.479 < 2e-16 ***
DESTIN_SZ1415 -0.4180928 0.0514423 -8.127 4.39e-16 ***
DESTIN_SZ1416 -0.9067838 0.0516081 -17.571 < 2e-16 ***
DESTIN_SZ1417 -0.7557494 0.0514353 -14.693 < 2e-16 ***
DESTIN_SZ1418 -0.8272951 0.0514697 -16.073 < 2e-16 ***
DESTIN_SZ1419 -1.1911738 0.0516941 -23.043 < 2e-16 ***
DESTIN_SZ1422 -1.6389457 0.0515416 -31.799 < 2e-16 ***
DESTIN_SZ1423 -1.0874610 0.0514401 -21.140 < 2e-16 ***
DESTIN_SZ1430 0.1564434 0.0513945 3.044 0.002335 **
DESTIN_SZ1431 0.5844570 0.0512859 11.396 < 2e-16 ***
DESTIN_SZ1432 0.1366110 0.0513219 2.662 0.007771 **
DESTIN_SZ1433 -0.7381787 0.0519751 -14.203 < 2e-16 ***
DESTIN_SZ1434 0.2800602 0.0513197 5.457 4.84e-08 ***
DESTIN_SZ1435 -0.3222279 0.0513685 -6.273 3.54e-10 ***
DESTIN_SZ1436 -1.6523269 0.0521618 -31.677 < 2e-16 ***
DESTIN_SZ1437 -0.9444461 0.0515273 -18.329 < 2e-16 ***
DESTIN_SZ1438 -0.4446449 0.0513330 -8.662 < 2e-16 ***
DESTIN_SZ1439 0.3375639 0.0512823 6.582 4.63e-11 ***
DESTIN_SZ1440 -0.3870923 0.0515401 -7.511 5.89e-14 ***
DESTIN_SZ1442 -3.3879981 0.0539655 -62.781 < 2e-16 ***
DESTIN_SZ1443 -1.4924899 0.0515068 -28.977 < 2e-16 ***
DESTIN_SZ1444 -0.5303942 0.0515337 -10.292 < 2e-16 ***
DESTIN_SZ1452 0.8128870 0.0512598 15.858 < 2e-16 ***
DESTIN_SZ1453 -0.0076285 0.0513978 -0.148 0.882010
DESTIN_SZ1454 -1.0785330 0.0523596 -20.599 < 2e-16 ***
DESTIN_SZ1455 -0.5577844 0.0516364 -10.802 < 2e-16 ***
DESTIN_SZ1456 -0.5122031 0.0514679 -9.952 < 2e-16 ***
DESTIN_SZ1457 0.0477229 0.0513565 0.929 0.352761
DESTIN_SZ1458 0.9625731 0.0512288 18.790 < 2e-16 ***
DESTIN_SZ1459 -1.7599660 0.0517782 -33.990 < 2e-16 ***
DESTIN_SZ1460 -0.5803404 0.0513494 -11.302 < 2e-16 ***
DESTIN_SZ1461 -0.7523062 0.0515850 -14.584 < 2e-16 ***
DESTIN_SZ1464 -1.5960559 0.0516332 -30.911 < 2e-16 ***
DESTIN_SZ1465 -2.4179018 0.0522476 -46.278 < 2e-16 ***
DESTIN_SZ1472 -0.2687214 0.0516536 -5.202 1.97e-07 ***
DESTIN_SZ1473 0.6756332 0.0512870 13.174 < 2e-16 ***
DESTIN_SZ1474 0.4409882 0.0512726 8.601 < 2e-16 ***
DESTIN_SZ1475 0.0098417 0.0513471 0.192 0.848001
DESTIN_SZ1476 -0.8955184 0.0516215 -17.348 < 2e-16 ***
DESTIN_SZ1477 0.9028455 0.0512201 17.627 < 2e-16 ***
DESTIN_SZ1478 -0.7348643 0.0514058 -14.295 < 2e-16 ***
DESTIN_SZ1479 -1.5639669 0.0516610 -30.274 < 2e-16 ***
DESTIN_SZ1480 0.7140913 0.0512291 13.939 < 2e-16 ***
DESTIN_SZ1481 -0.9661214 0.0515831 -18.729 < 2e-16 ***
DESTIN_SZ1482 0.1793234 0.0514010 3.489 0.000485 ***
DESTIN_SZ1485 -2.9046426 0.0526693 -55.149 < 2e-16 ***
DESTIN_SZ1494 0.4415024 0.0513345 8.600 < 2e-16 ***
DESTIN_SZ1495 -0.3827936 0.0514662 -7.438 1.02e-13 ***
DESTIN_SZ1496 0.4335753 0.0512758 8.456 < 2e-16 ***
DESTIN_SZ1497 -0.9430601 0.0516777 -18.249 < 2e-16 ***
DESTIN_SZ1498 -0.7701769 0.0515241 -14.948 < 2e-16 ***
DESTIN_SZ1499 -0.5130998 0.0513446 -9.993 < 2e-16 ***
DESTIN_SZ1500 -0.9594229 0.0517934 -18.524 < 2e-16 ***
DESTIN_SZ1501 -0.2834080 0.0513117 -5.523 3.33e-08 ***
DESTIN_SZ1502 -0.3561132 0.0513360 -6.937 4.01e-12 ***
DESTIN_SZ1506 -4.8297122 0.0826721 -58.420 < 2e-16 ***
DESTIN_SZ1514 -6.1601195 0.7090833 -8.687 < 2e-16 ***
DESTIN_SZ1515 -0.4021863 0.0527416 -7.626 2.43e-14 ***
DESTIN_SZ1516 0.4867471 0.0512764 9.493 < 2e-16 ***
DESTIN_SZ1517 -0.4048911 0.0515571 -7.853 4.05e-15 ***
DESTIN_SZ1518 -1.2937568 0.0517682 -24.991 < 2e-16 ***
DESTIN_SZ1519 -1.0975742 0.0517458 -21.211 < 2e-16 ***
DESTIN_SZ1520 -0.7623543 0.0514210 -14.826 < 2e-16 ***
DESTIN_SZ1521 -1.4054189 0.0516917 -27.188 < 2e-16 ***
DESTIN_SZ1522 -0.6239279 0.0513943 -12.140 < 2e-16 ***
DESTIN_SZ1523 0.8153167 0.0513352 15.882 < 2e-16 ***
DESTIN_SZ1524 -1.6446155 0.0524140 -31.377 < 2e-16 ***
DESTIN_SZ1527 -4.1324606 0.0600404 -68.828 < 2e-16 ***
DESTIN_SZ1535 -0.9147401 0.0781841 -11.700 < 2e-16 ***
DESTIN_SZ1536 -1.8072586 0.0565448 -31.962 < 2e-16 ***
DESTIN_SZ1537 0.0041376 0.0514854 0.080 0.935948
DESTIN_SZ1538 -0.2229190 0.0513983 -4.337 1.44e-05 ***
DESTIN_SZ1539 -0.3001120 0.0513569 -5.844 5.11e-09 ***
DESTIN_SZ1540 -1.0658540 0.0515033 -20.695 < 2e-16 ***
DESTIN_SZ1541 -0.1241268 0.0515865 -2.406 0.016120 *
DESTIN_SZ1542 -1.2050939 0.0519468 -23.199 < 2e-16 ***
DESTIN_SZ1543 -1.5768271 0.0576629 -27.346 < 2e-16 ***
DESTIN_SZ1544 -1.2821041 0.0519312 -24.689 < 2e-16 ***
DESTIN_SZ1547 -2.0548548 0.0532118 -38.617 < 2e-16 ***
DESTIN_SZ1556 -1.5075149 0.0873137 -17.266 < 2e-16 ***
DESTIN_SZ1557 -1.2661393 0.0537982 -23.535 < 2e-16 ***
DESTIN_SZ1558 -0.3472861 0.0525819 -6.605 3.98e-11 ***
DESTIN_SZ1559 0.2603551 0.0512974 5.075 3.87e-07 ***
DESTIN_SZ1560 0.1817291 0.0512955 3.543 0.000396 ***
DESTIN_SZ1561 -0.7520581 0.0515875 -14.578 < 2e-16 ***
DESTIN_SZ1562 -2.8001565 0.0536531 -52.190 < 2e-16 ***
DESTIN_SZ1563 -1.8411914 0.0519502 -35.441 < 2e-16 ***
DESTIN_SZ1564 -1.5676067 0.0518219 -30.250 < 2e-16 ***
DESTIN_SZ1565 -0.9586408 0.0515502 -18.596 < 2e-16 ***
DESTIN_SZ1566 -2.7051494 0.0536707 -50.403 < 2e-16 ***
DESTIN_SZ1567 -2.5671756 0.0540817 -47.468 < 2e-16 ***
DESTIN_SZ1568 -1.5604152 0.0524275 -29.763 < 2e-16 ***
DESTIN_SZ1578 -1.4603085 0.1059208 -13.787 < 2e-16 ***
DESTIN_SZ1580 -2.5026381 0.0562154 -44.519 < 2e-16 ***
DESTIN_SZ1581 -0.2366876 0.0513717 -4.607 4.08e-06 ***
DESTIN_SZ1582 -0.1029258 0.0513068 -2.006 0.044847 *
DESTIN_SZ1583 -2.0096129 0.0548650 -36.628 < 2e-16 ***
DESTIN_SZ1584 -1.8100427 0.0525007 -34.477 < 2e-16 ***
DESTIN_SZ1585 -1.2074610 0.0517276 -23.343 < 2e-16 ***
DESTIN_SZ1586 -0.7091282 0.0514511 -13.783 < 2e-16 ***
DESTIN_SZ1589 -2.2438011 0.0528169 -42.483 < 2e-16 ***
DESTIN_SZ1590 -1.7123460 0.0528644 -32.391 < 2e-16 ***
DESTIN_SZ1600 -0.7630851 0.0531144 -14.367 < 2e-16 ***
DESTIN_SZ1601 -1.2029504 0.0516409 -23.295 < 2e-16 ***
DESTIN_SZ1602 -0.8067554 0.0515667 -15.645 < 2e-16 ***
DESTIN_SZ1603 0.2555452 0.0513068 4.981 6.33e-07 ***
DESTIN_SZ1604 -2.0225130 0.0521678 -38.769 < 2e-16 ***
DESTIN_SZ1605 -0.9261345 0.0514582 -17.998 < 2e-16 ***
DESTIN_SZ1606 -1.6913369 0.0527869 -32.041 < 2e-16 ***
DESTIN_SZ1607 -0.4754947 0.0513412 -9.261 < 2e-16 ***
DESTIN_SZ1608 -1.2123834 0.0515542 -23.517 < 2e-16 ***
DESTIN_SZ1609 -0.4897606 0.0514161 -9.525 < 2e-16 ***
DESTIN_SZ1610 -2.6061150 0.0571882 -45.571 < 2e-16 ***
DESTIN_SZ1622 -0.5446688 0.0523699 -10.400 < 2e-16 ***
DESTIN_SZ1623 -0.1507277 0.0513249 -2.937 0.003317 **
DESTIN_SZ1624 0.3591620 0.0513017 7.001 2.54e-12 ***
DESTIN_SZ1625 -0.5401195 0.0514560 -10.497 < 2e-16 ***
DESTIN_SZ1626 1.1711134 0.0512154 22.866 < 2e-16 ***
DESTIN_SZ1627 -1.9753954 0.0518932 -38.067 < 2e-16 ***
DESTIN_SZ1628 0.0799766 0.0512864 1.559 0.118899
DESTIN_SZ1629 -2.9543248 0.0531759 -55.558 < 2e-16 ***
DESTIN_SZ1630 -2.5166114 0.0523718 -48.053 < 2e-16 ***
DESTIN_SZ1631 -2.8012615 0.0539205 -51.952 < 2e-16 ***
DESTIN_SZ1642 -2.9369905 0.0594512 -49.402 < 2e-16 ***
DESTIN_SZ1643 -0.6392774 0.0514690 -12.421 < 2e-16 ***
DESTIN_SZ1644 -0.6174372 0.0516805 -11.947 < 2e-16 ***
DESTIN_SZ1645 -0.8212048 0.0515266 -15.937 < 2e-16 ***
DESTIN_SZ1646 -0.5980818 0.0517321 -11.561 < 2e-16 ***
DESTIN_SZ1647 -1.2860405 0.0515163 -24.964 < 2e-16 ***
DESTIN_SZ1648 -1.1959292 0.0514632 -23.239 < 2e-16 ***
DESTIN_SZ1649 -0.6369036 0.0513317 -12.408 < 2e-16 ***
DESTIN_SZ1650 -1.5128892 0.0516721 -29.279 < 2e-16 ***
DESTIN_SZ1664 -4.7930633 0.1098598 -43.629 < 2e-16 ***
DESTIN_SZ1665 -0.0515334 0.0513149 -1.004 0.315254
DESTIN_SZ1666 -0.0239929 0.0513114 -0.468 0.640076
DESTIN_SZ1667 -0.9743343 0.0531502 -18.332 < 2e-16 ***
DESTIN_SZ1668 -1.2269712 0.0515780 -23.789 < 2e-16 ***
DESTIN_SZ1670 -0.7954968 0.0513499 -15.492 < 2e-16 ***
DESTIN_SZ1671 -1.2418825 0.0522296 -23.777 < 2e-16 ***
DESTIN_SZ1672 -2.3022212 0.0525014 -43.851 < 2e-16 ***
DESTIN_SZ1684 -0.4304290 0.0519184 -8.290 < 2e-16 ***
DESTIN_SZ1685 -1.4645160 0.0518613 -28.239 < 2e-16 ***
DESTIN_SZ1686 -0.6649122 0.0514485 -12.924 < 2e-16 ***
DESTIN_SZ1687 -0.4469455 0.0515834 -8.665 < 2e-16 ***
DESTIN_SZ1688 -1.2103593 0.0515961 -23.458 < 2e-16 ***
DESTIN_SZ1689 -2.0318409 0.0520907 -39.006 < 2e-16 ***
DESTIN_SZ1690 -2.6557186 0.0526821 -50.410 < 2e-16 ***
DESTIN_SZ1691 -0.7559406 0.0513492 -14.722 < 2e-16 ***
DESTIN_SZ1692 -2.7344038 0.0529996 -51.593 < 2e-16 ***
DESTIN_SZ1706 -0.8157845 0.0517084 -15.777 < 2e-16 ***
DESTIN_SZ1707 -1.5207574 0.0517602 -29.381 < 2e-16 ***
DESTIN_SZ1708 -0.9293787 0.0515243 -18.038 < 2e-16 ***
DESTIN_SZ1709 -0.2533826 0.0513619 -4.933 8.09e-07 ***
DESTIN_SZ1710 -0.4705443 0.0513971 -9.155 < 2e-16 ***
DESTIN_SZ1711 0.1035736 0.0512810 2.020 0.043412 *
DESTIN_SZ1712 -0.7585846 0.0513360 -14.777 < 2e-16 ***
DESTIN_SZ1713 -3.2187238 0.0533690 -60.311 < 2e-16 ***
DESTIN_SZ1714 -1.8509557 0.0518102 -35.726 < 2e-16 ***
DESTIN_SZ1727 -0.3281378 0.0514445 -6.378 1.79e-10 ***
DESTIN_SZ1728 -0.2656445 0.0513489 -5.173 2.30e-07 ***
DESTIN_SZ1729 -0.1505889 0.0513302 -2.934 0.003349 **
DESTIN_SZ1730 -1.3135524 0.0518411 -25.338 < 2e-16 ***
DESTIN_SZ1731 -0.3450304 0.0513483 -6.719 1.82e-11 ***
DESTIN_SZ1732 -0.9576342 0.0513731 -18.641 < 2e-16 ***
DESTIN_SZ1733 -2.1009192 0.0517634 -40.587 < 2e-16 ***
DESTIN_SZ1734 -0.9662186 0.0513829 -18.804 < 2e-16 ***
DESTIN_SZ1735 -1.6196507 0.0530001 -30.559 < 2e-16 ***
DESTIN_SZ1748 -1.3455414 0.0519173 -25.917 < 2e-16 ***
DESTIN_SZ1749 -0.0692367 0.0513077 -1.349 0.177195
DESTIN_SZ1750 -0.1706104 0.0513297 -3.324 0.000888 ***
DESTIN_SZ1751 -0.6908149 0.0515316 -13.406 < 2e-16 ***
DESTIN_SZ1753 -0.4777093 0.0513504 -9.303 < 2e-16 ***
DESTIN_SZ1754 0.4644919 0.0512313 9.067 < 2e-16 ***
DESTIN_SZ1755 -0.3997836 0.0512848 -7.795 6.42e-15 ***
DESTIN_SZ1756 -1.3746139 0.0514467 -26.719 < 2e-16 ***
DESTIN_SZ1757 -3.8524900 0.0559489 -68.857 < 2e-16 ***
DESTIN_SZ1769 -0.6842136 0.0515069 -13.284 < 2e-16 ***
DESTIN_SZ1770 -0.9894563 0.0515700 -19.187 < 2e-16 ***
DESTIN_SZ1771 -0.0464202 0.0513927 -0.903 0.366396
DESTIN_SZ1772 0.8935222 0.0516484 17.300 < 2e-16 ***
DESTIN_SZ1774 -1.5556845 0.0515848 -30.158 < 2e-16 ***
DESTIN_SZ1775 -2.0175718 0.0517064 -39.020 < 2e-16 ***
DESTIN_SZ1776 0.1955744 0.0512424 3.817 0.000135 ***
DESTIN_SZ1777 -1.9423903 0.0516768 -37.587 < 2e-16 ***
DESTIN_SZ1778 -2.8452322 0.0552081 -51.536 < 2e-16 ***
DESTIN_SZ1790 0.0022638 0.0513974 0.044 0.964869
DESTIN_SZ1791 -0.4991015 0.0514643 -9.698 < 2e-16 ***
DESTIN_SZ1792 -0.4502431 0.0516120 -8.724 < 2e-16 ***
DESTIN_SZ1793 -0.4864904 0.0514665 -9.453 < 2e-16 ***
DESTIN_SZ1794 1.1619447 0.0517138 22.469 < 2e-16 ***
DESTIN_SZ1795 -3.0172312 0.0550845 -54.775 < 2e-16 ***
DESTIN_SZ1796 -0.9774694 0.0514261 -19.007 < 2e-16 ***
DESTIN_SZ1797 -1.3326955 0.0514383 -25.909 < 2e-16 ***
DESTIN_SZ1798 -1.2969988 0.0514224 -25.222 < 2e-16 ***
DESTIN_SZ1799 -2.2465498 0.0519496 -43.245 < 2e-16 ***
DESTIN_SZ1800 -3.9935581 0.0723025 -55.234 < 2e-16 ***
DESTIN_SZ1811 -1.0590842 0.0517111 -20.481 < 2e-16 ***
DESTIN_SZ1812 0.3590167 0.0512653 7.003 2.50e-12 ***
DESTIN_SZ1813 0.4992759 0.0512622 9.740 < 2e-16 ***
DESTIN_SZ1817 -2.4864890 0.0523954 -47.456 < 2e-16 ***
DESTIN_SZ1818 -1.7182096 0.0514915 -33.369 < 2e-16 ***
DESTIN_SZ1819 0.0240974 0.0512561 0.470 0.638258
DESTIN_SZ1820 -4.6302896 0.0671388 -68.966 < 2e-16 ***
DESTIN_SZ1832 0.3027449 0.0513266 5.898 3.67e-09 ***
DESTIN_SZ1833 -1.1175187 0.0516145 -21.651 < 2e-16 ***
DESTIN_SZ1834 -1.1643110 0.0515736 -22.576 < 2e-16 ***
DESTIN_SZ1835 -1.1034254 0.0516956 -21.345 < 2e-16 ***
DESTIN_SZ1837 -1.2798099 0.0529416 -24.174 < 2e-16 ***
DESTIN_SZ1839 -2.7476503 0.0525428 -52.294 < 2e-16 ***
DESTIN_SZ1840 0.0591904 0.0512677 1.155 0.248280
DESTIN_SZ1841 -3.6140544 0.0563218 -64.168 < 2e-16 ***
DESTIN_SZ1842 -1.2365557 0.0537465 -23.007 < 2e-16 ***
DESTIN_SZ1853 -0.6869057 0.0514703 -13.346 < 2e-16 ***
DESTIN_SZ1854 -0.4703606 0.0514115 -9.149 < 2e-16 ***
DESTIN_SZ1855 -0.1006238 0.0513565 -1.959 0.050075 .
DESTIN_SZ1858 -0.1378219 0.0518253 -2.659 0.007829 **
DESTIN_SZ1860 -1.9890741 0.0543889 -36.571 < 2e-16 ***
DESTIN_SZ1861 -1.5130177 0.0515126 -29.372 < 2e-16 ***
DESTIN_SZ1874 -1.0918546 0.0520028 -20.996 < 2e-16 ***
DESTIN_SZ1875 -2.8093221 0.0550349 -51.046 < 2e-16 ***
DESTIN_SZ1876 -1.5269275 0.0555477 -27.489 < 2e-16 ***
DESTIN_SZ1877 -0.2890524 0.0513871 -5.625 1.86e-08 ***
DESTIN_SZ1880 -1.0883259 0.0530407 -20.519 < 2e-16 ***
DESTIN_SZ1882 -1.5485047 0.0515461 -30.041 < 2e-16 ***
DESTIN_SZ1883 -2.5488934 0.0545407 -46.734 < 2e-16 ***
DESTIN_SZ1895 -0.2799474 0.0514097 -5.445 5.17e-08 ***
DESTIN_SZ1896 -1.3684874 0.0517311 -26.454 < 2e-16 ***
DESTIN_SZ1897 -2.0477817 0.0524121 -39.071 < 2e-16 ***
DESTIN_SZ1898 -2.6109351 0.0568583 -45.920 < 2e-16 ***
DESTIN_SZ1901 -1.6008624 0.0549727 -29.121 < 2e-16 ***
DESTIN_SZ1903 -2.9624169 0.0538179 -55.045 < 2e-16 ***
DESTIN_SZ1917 -1.4924199 0.0519227 -28.743 < 2e-16 ***
DESTIN_SZ1918 -0.2881605 0.0515456 -5.590 2.27e-08 ***
DESTIN_SZ1919 -0.1606848 0.0513644 -3.128 0.001758 **
DESTIN_SZ1922 -0.3760960 0.0522425 -7.199 6.06e-13 ***
DESTIN_SZ1924 -3.1130984 0.0548205 -56.787 < 2e-16 ***
DESTIN_SZ1937 -0.8872746 0.0516955 -17.163 < 2e-16 ***
DESTIN_SZ1938 -0.0981959 0.0513527 -1.912 0.055852 .
DESTIN_SZ1939 -1.2222595 0.0517896 -23.600 < 2e-16 ***
DESTIN_SZ1942 -1.7164535 0.0544763 -31.508 < 2e-16 ***
DESTIN_SZ1959 -1.3075166 0.0519921 -25.148 < 2e-16 ***
DESTIN_SZ1960 1.0681295 0.0512224 20.853 < 2e-16 ***
DESTIN_SZ1961 -1.5151973 0.0520321 -29.120 < 2e-16 ***
DESTIN_SZ1962 -0.6842364 0.0515028 -13.285 < 2e-16 ***
DESTIN_SZ1964 -0.0677055 0.0523611 -1.293 0.195994
DESTIN_SZ1979 -0.8932725 0.0518045 -17.243 < 2e-16 ***
DESTIN_SZ1980 -1.1411757 0.0515904 -22.120 < 2e-16 ***
DESTIN_SZ1981 -1.1609205 0.0516349 -22.483 < 2e-16 ***
DESTIN_SZ1982 -0.5587009 0.0516513 -10.817 < 2e-16 ***
DESTIN_SZ1983 -0.8129776 0.0515143 -15.782 < 2e-16 ***
DESTIN_SZ1984 -0.7339210 0.0515336 -14.242 < 2e-16 ***
DESTIN_SZ1985 -0.5987696 0.0514875 -11.629 < 2e-16 ***
DESTIN_SZ2001 -0.8386472 0.0515705 -16.262 < 2e-16 ***
DESTIN_SZ2002 -0.7125990 0.0514028 -13.863 < 2e-16 ***
DESTIN_SZ2003 -0.1507902 0.0513428 -2.937 0.003315 **
DESTIN_SZ2004 0.0340892 0.0513301 0.664 0.506615
DESTIN_SZ2005 -0.9914087 0.0515569 -19.229 < 2e-16 ***
DESTIN_SZ2006 -0.1373183 0.0513784 -2.673 0.007525 **
DESTIN_SZ2007 -3.5235543 0.0591390 -59.581 < 2e-16 ***
DESTIN_SZ2022 -0.3128728 0.0515664 -6.067 1.30e-09 ***
DESTIN_SZ2023 -0.2806077 0.0513652 -5.463 4.68e-08 ***
DESTIN_SZ2024 -0.0050272 0.0513101 -0.098 0.921950
DESTIN_SZ2025 -1.3026043 0.0515671 -25.260 < 2e-16 ***
DESTIN_SZ2026 -2.0221239 0.0524682 -38.540 < 2e-16 ***
DESTIN_SZ2027 -0.0573786 0.0513523 -1.117 0.263844
DESTIN_SZ2043 -1.7140567 0.0523569 -32.738 < 2e-16 ***
DESTIN_SZ2044 -0.7720247 0.0514786 -14.997 < 2e-16 ***
DESTIN_SZ2045 -1.4745279 0.0524981 -28.087 < 2e-16 ***
DESTIN_SZ2046 -0.0168658 0.0512891 -0.329 0.742279
DESTIN_SZ2047 -1.8746210 0.0519525 -36.083 < 2e-16 ***
DESTIN_SZ2048 -1.6490979 0.0518529 -31.803 < 2e-16 ***
DESTIN_SZ2049 -3.4793526 0.0581879 -59.795 < 2e-16 ***
DESTIN_SZ2064 -0.9329527 0.0516344 -18.068 < 2e-16 ***
DESTIN_SZ2065 -1.1097890 0.0516479 -21.488 < 2e-16 ***
DESTIN_SZ2066 -3.2830969 0.0606187 -54.160 < 2e-16 ***
DESTIN_SZ2067 1.5136276 0.0512138 29.555 < 2e-16 ***
DESTIN_SZ2068 -1.9303461 0.0528260 -36.542 < 2e-16 ***
DESTIN_SZ2069 -1.4143940 0.0518261 -27.291 < 2e-16 ***
DESTIN_SZ2085 -0.8170928 0.0516851 -15.809 < 2e-16 ***
DESTIN_SZ2086 0.5553825 0.0512976 10.827 < 2e-16 ***
DESTIN_SZ2087 0.2237158 0.0513168 4.360 1.30e-05 ***
DESTIN_SZ2088 -0.9597162 0.0514673 -18.647 < 2e-16 ***
DESTIN_SZ2089 -1.5140406 0.0519228 -29.159 < 2e-16 ***
DESTIN_SZ2090 1.1758859 0.0512325 22.952 < 2e-16 ***
DESTIN_SZ2091 -4.2730449 0.0839888 -50.876 < 2e-16 ***
DESTIN_SZ2105 -1.7012741 0.0817221 -20.818 < 2e-16 ***
DESTIN_SZ2106 -2.3512028 0.0532865 -44.124 < 2e-16 ***
DESTIN_SZ2107 0.4992824 0.0512939 9.734 < 2e-16 ***
DESTIN_SZ2108 0.0578262 0.0513711 1.126 0.260311
DESTIN_SZ2109 -1.3348661 0.0515689 -25.885 < 2e-16 ***
DESTIN_SZ2110 -2.1060908 0.0524558 -40.150 < 2e-16 ***
DESTIN_SZ2111 -3.2705285 0.0608965 -53.706 < 2e-16 ***
DESTIN_SZ2128 -0.6342079 0.0518329 -12.236 < 2e-16 ***
DESTIN_SZ2129 -0.8166701 0.0521164 -15.670 < 2e-16 ***
DESTIN_SZ2130 -0.7555801 0.0514389 -14.689 < 2e-16 ***
DESTIN_SZ2131 -0.7930385 0.0516386 -15.357 < 2e-16 ***
DESTIN_SZ2132 -1.3362523 0.0517012 -25.846 < 2e-16 ***
DESTIN_SZ2148 -1.3564723 0.0532175 -25.489 < 2e-16 ***
DESTIN_SZ2149 -1.4365154 0.0522910 -27.472 < 2e-16 ***
DESTIN_SZ2150 -1.0887767 0.0518064 -21.016 < 2e-16 ***
DESTIN_SZ2151 0.5962899 0.0512590 11.633 < 2e-16 ***
DESTIN_SZ2152 -0.3742242 0.0514138 -7.279 3.37e-13 ***
DESTIN_SZ2153 -1.6780871 0.0523817 -32.036 < 2e-16 ***
DESTIN_SZ2171 -0.1744648 0.0514510 -3.391 0.000697 ***
DESTIN_SZ2172 -1.8376704 0.0523240 -35.121 < 2e-16 ***
DESTIN_SZ2173 -1.4517682 0.0516775 -28.093 < 2e-16 ***
DESTIN_SZ2174 -0.7973274 0.0515841 -15.457 < 2e-16 ***
DESTIN_SZ2191 0.0902737 0.0516998 1.746 0.080791 .
DESTIN_SZ2192 -1.2790689 0.0522786 -24.466 < 2e-16 ***
DESTIN_SZ2193 -0.6378899 0.0515557 -12.373 < 2e-16 ***
DESTIN_SZ2194 -0.6737004 0.0514791 -13.087 < 2e-16 ***
DESTIN_SZ2195 -2.5995678 0.0623353 -41.703 < 2e-16 ***
DESTIN_SZ2212 0.0746680 0.0528250 1.413 0.157510
DESTIN_SZ2213 -0.2507887 0.0518153 -4.840 1.30e-06 ***
DESTIN_SZ2214 0.4079463 0.0517061 7.890 3.03e-15 ***
DESTIN_SZ2215 -1.2526124 0.0520350 -24.072 < 2e-16 ***
DESTIN_SZ2216 -0.4016979 0.0515234 -7.796 6.37e-15 ***
DESTIN_SZ2233 0.4360380 0.0521165 8.367 < 2e-16 ***
DESTIN_SZ2234 0.9816535 0.0518510 18.932 < 2e-16 ***
DESTIN_SZ2235 -0.3711216 0.0519384 -7.145 8.97e-13 ***
DESTIN_SZ2236 -1.8616497 0.0529479 -35.160 < 2e-16 ***
DESTIN_SZ2237 -0.3613258 0.0524631 -6.887 5.69e-12 ***
DESTIN_SZ2256 -0.1486757 0.0526155 -2.826 0.004718 **
DESTIN_SZ2257 -2.6465337 0.0575364 -45.998 < 2e-16 ***
DESTIN_SZ2258 -0.6302004 0.0516952 -12.191 < 2e-16 ***
DESTIN_SZ2259 0.4493450 0.0522187 8.605 < 2e-16 ***
DESTIN_SZ2277 -1.4277992 0.0572798 -24.927 < 2e-16 ***
DESTIN_SZ2278 -1.0987939 0.0535642 -20.514 < 2e-16 ***
DESTIN_SZ2279 -0.4217723 0.0517179 -8.155 3.48e-16 ***
DESTIN_SZ2280 -1.6980359 0.0600373 -28.283 < 2e-16 ***
DESTIN_SZ2297 -1.6317059 0.0544077 -29.990 < 2e-16 ***
DESTIN_SZ2300 -1.5357290 0.0551923 -27.825 < 2e-16 ***
DESTIN_SZ2301 -0.7032192 0.0521112 -13.495 < 2e-16 ***
DESTIN_SZ2318 0.7165873 0.0514743 13.921 < 2e-16 ***
DESTIN_SZ2319 0.7156622 0.0514403 13.912 < 2e-16 ***
DESTIN_SZ2322 -0.2356355 0.0519697 -4.534 5.79e-06 ***
DESTIN_SZ2337 0.2733136 0.0544478 5.020 5.17e-07 ***
DESTIN_SZ2341 1.0100202 0.0514164 19.644 < 2e-16 ***
DESTIN_SZ2343 -1.1431043 0.0527584 -21.667 < 2e-16 ***
DESTIN_SZ2361 -0.3581483 0.0520025 -6.887 5.69e-12 ***
DESTIN_SZ2364 -2.2471011 0.0591155 -38.012 < 2e-16 ***
DESTIN_SZ2379 -1.2051440 0.0579292 -20.804 < 2e-16 ***
DESTIN_SZ2384 0.7246833 0.0515972 14.045 < 2e-16 ***
DESTIN_SZ2405 1.3975678 0.0514186 27.180 < 2e-16 ***
DESTIN_SZ2406 -1.6290299 0.0563539 -28.907 < 2e-16 ***
DESTIN_SZ2426 0.8495482 0.0523702 16.222 < 2e-16 ***
DESTIN_SZ2427 1.1361526 0.0516163 22.012 < 2e-16 ***
DESTIN_SZ2505 0.7094831 0.0546883 12.973 < 2e-16 ***
log(dist) -1.6146098 0.0002885 -5595.605 < 2e-16 ***
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
(Dispersion parameter for poisson family taken to be 1)
Null deviance: 101244825 on 64961 degrees of freedom
Residual deviance: 25322395 on 63326 degrees of freedom
AIC: 25684037
Number of Fisher Scoring iterations: 10
In the Destin Constrained Model, the coefficients for five variables are all NA (Not Available), meaning that suitable coefficient values could not be calculated during the model fitting process. The specific cause requires further examination
For the purpose of model comparison, we decided to exclude Destin Constrained Model. This ensures that, for a reliable comparison of model performance, the comparison is based on reliable estimates, avoiding the influence of variables with coefficients that could not be computed.
9 Model Comparison
First of all, let us create a list called model_list by using the code chunk below. It contains all our fitted models for all four variations of gravity model.
model_list <- list(
Unconstrained = uncSIM,
Origin_Constrained = orcSIM,
Doubly_Constrained = dbcSIM)Next, we will compute the RMSE of all the models in model_list file by using the code chunk below.
The RMSE values provide a measure of the goodness of fit for each model. A lower RMSE indicates better model performance in terms of how well the model predictions align with the observed values. In this comparison, the Doubly Constrained Model has the lowest RMSE (1219.291), suggesting that it performs better in terms of minimizing prediction errors compared to the Unconstrained and Origin Constrained models.
compare_performance(model_list,
metrics = "RMSE")# Comparison of Model Performance Indices
Name | Model | RMSE
-------------------------------------
Unconstrained | glm | 1773.898
Origin_Constrained | glm | 1653.729
Doubly_Constrained | glm | 1219.291
9.1 Visualising the fitted values
We will do a plot to visualise the observed values and the fitted values.
Firstly we will extract the fitted values from each model by using the code chunk below.
df <- as.data.frame(uncSIM$fitted.values) %>%
round(digits = 0)Next, we will join the values to SIM_data data frame:
inter_zonal_flow <- inter_zonal_flow %>%
cbind(df) %>%
rename(uncTRIPS = "uncSIM$fitted.values")Repeat the same step by for Origin Constrained SIM:
df <- as.data.frame(orcSIM$fitted.values) %>%
round(digits = 0)inter_zonal_flow <- inter_zonal_flow %>%
cbind(df) %>%
rename(orcTRIPS = "orcSIM$fitted.values")Repeat the same step by for Doubly Constrained SIM:
df<- as.data.frame(dbcSIM$fitted.values) %>%
round(digits = 0)inter_zonal_flow <- inter_zonal_flow %>%
cbind(df) %>%
rename(dbcTRIPS = "dbcSIM$fitted.values")We will create scatter plots displaying the relationship between actual and predicted values through linear fitting and compare each other.
Code
unc_p <- ggplot(data = inter_zonal_flow,
aes(x = uncTRIPS,
y = MORNING_PEAK)) +
geom_point(color = "darkgreen") +
geom_smooth(method = lm, color = "yellow") +
theme_minimal()
coord_cartesian(xlim=c(0,100000),
ylim=c(0,100000))<ggproto object: Class CoordCartesian, Coord, gg>
aspect: function
backtransform_range: function
clip: on
default: FALSE
distance: function
expand: TRUE
is_free: function
is_linear: function
labels: function
limits: list
modify_scales: function
range: function
render_axis_h: function
render_axis_v: function
render_bg: function
render_fg: function
setup_data: function
setup_layout: function
setup_panel_guides: function
setup_panel_params: function
setup_params: function
train_panel_guides: function
transform: function
super: <ggproto object: Class CoordCartesian, Coord, gg>
Code
orc_p <- ggplot(data = inter_zonal_flow,
aes(x = orcTRIPS,
y = MORNING_PEAK)) +
geom_point(color = "darkgreen") +
geom_smooth(method = lm, color = "yellow") +
theme_minimal()+
coord_cartesian(xlim=c(0,100000),
ylim=c(0,100000))
dbc_p <- ggplot(data = inter_zonal_flow,
aes(x = dbcTRIPS,
y = MORNING_PEAK)) +
geom_point(color = "darkgreen") +
geom_smooth(method = lm, color = "yellow") +
theme_minimal()+
coord_cartesian(xlim=c(0,100000),
ylim=c(0,100000))
ggarrange( unc_p, orc_p, dbc_p,
ncol = 2,
nrow = 2)
The results indicate that for the Doubly Constrained Model, the scatter plot points closely follow the fitted curve. This tight distribution suggests strong linear correlation between the actual values and the model predictions. The model appears to accurately capture the variation trends in the actual values, making it well-suited for describing underlying relationships.
10 Conclusion
In the comparison of three spatial interaction models (UNC, ORC, DBC), insights are provided through the examination of R-squared values. Specifically, the DBC model stands out with an R-squared value of 59%, signifying superior explanatory power among the considered models. Additionally, the comparison of Root Mean Square Error (RMSE) reveals that the DBC model has the lowest RMSE at 1219.291. This implies that the DBC model demonstrates the least average deviation in predictions compared to observed values, showcasing higher predictive accuracy.
According to the UNC and ORC models, the p-values of all the variables are very small (<0.05) , indicating that their contributions in the models are highly statistically significant. Considering both models, Entertainment consistently emerges as the variable with the most significant positive impact, followed by School and HDB. Distance consistently exhibits the most significant negative impact in both the UNC and ORC models.